forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sysutils/monit: illegal pax option #2
Comments
Fixed, will be included in pkgsrc-2012Q3. |
jperkin
pushed a commit
that referenced
this issue
Sep 24, 2012
09/09/12 - Allow use of editline library in Mathomatic, because somehow use of GPL libraries in LGPL code is not allowed, and GNU readline is GPL. I am so confused about this Debian bug#687063: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687063 Based on the bug report's information sources, it appears he is saying the truth about this license issue, so I will have to upload new versions of Mathomatic with editline instead of readline to Debian. The only noticeable difference should be it doesn't save the history between Mathomatic sessions. I will comply with all that request it, though most distributions do not include editline, which has no major licensing restrictions. Readline is still perfectly usable and good as before, you just have to link it in yourself. 09/10/12 - Going to have to make a new release already, 2 days after the last one, so I can upload this readline licensing fix to Debian by linking with editline. There is no reason for anyone to upgrade to version 16.0.4, unless you wish to link with editline instead of readline. The proper code has been added. All you have to do is have the editline libraries loaded on your system, and run "make EDITLINE=1" to compile and link Mathomatic with editline. Mathomatic version 16.0.4 released Monday 09/10/12. CHANGES MADE TO MATHOMATIC 16.0.2 TO BRING IT UP TO THE NEXT VERSION: New command "set load" loads the current set options startup file again, displaying the startup file as it reads it in. If the file doesn't exist, or something is wrong, then an error message is displayed and the set command returns with failure. Accidently putting "load" in the startup file is now handled correctly. 08/09/12 - Allow "matho-primes all" and the command "list primes all" in Mathomatic to continually output consecutive prime numbers. 08/12/12 - Fixed any rman errors in the makefile so they won't be ignored. 08/17/12 - rmath and matho no longer set the debug_level or modulus_mode, so they can be set by the startup options file. 08/19/12 - Allow the repeat prefix on the approximate command, making it approximate and simplify as much as the calculate command does. Hopefully someday it will just give a temporary result, too. Numerical input into the symbolic math library now uses "repeat approximate" instead of just "approximate" to approximate the user's input, so the result is the same as the Mathomatic application's result. Disallow the same warnings to be repeatedly displayed, if the current warning is the same as the previous warning. 08/20/12 - Allow directory names as read command arguments, instructing the read command to change the current directory to the specified directory. Without any arguments, the read command now does an "ls" command in Unix/Linux, and "dir" under MS-Windows, listing the current directory contents. Running Mathomatic with a directory name argument now conveniently changes directory to that directory, then gives you the main prompt. 08/28/12 - Made "integer" type variables much more useful. For example, the following now happens generally: 1-> i^(4*integer) #1: i^(4*integer) 1-> simplify #1: 1 1-> i^((4*integer) + 1) #2: i^((4*integer) + 1) 2-> simplify #2: i 2-> i^((4*integer) + 2) #3: i^((4*integer) + 2) 3-> simplify #3: -1 3-> i^((4*integer) + 3) #4: i^((4*integer) + 3) 4-> simplify #4: -1*i 08/29/12 - Displays "Calculating..." whenever autocalc is used now. 08/30/12 - Added ability to set the normal text color. Still defaults to no color. Use "set color 0" to set the normal text color to green, as it has been for many years in the past. 08/31/12 - Removed the "set preserve_surds" option, since the approximate and calculate commands all take care of undoing that. The code remains, however "set preserve_surds" is no longer advertised. I have never used it. Surds are preserved, for accuracy's sake, by default. 09/05/12 - "set" as a null set option works now, so no one will have any trouble setting-up the set options startup file. Mathomatic version 16.0.3 released Saturday 09/08/12.
jperkin
pushed a commit
that referenced
this issue
Oct 8, 2012
09/09/12 - Allow use of editline library in Mathomatic, because somehow use of GPL libraries in LGPL code is not allowed, and GNU readline is GPL. I am so confused about this Debian bug#687063: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687063 Based on the bug report's information sources, it appears he is saying the truth about this license issue, so I will have to upload new versions of Mathomatic with editline instead of readline to Debian. The only noticeable difference should be it doesn't save the history between Mathomatic sessions. I will comply with all that request it, though most distributions do not include editline, which has no major licensing restrictions. Readline is still perfectly usable and good as before, you just have to link it in yourself. 09/10/12 - Going to have to make a new release already, 2 days after the last one, so I can upload this readline licensing fix to Debian by linking with editline. There is no reason for anyone to upgrade to version 16.0.4, unless you wish to link with editline instead of readline. The proper code has been added. All you have to do is have the editline libraries loaded on your system, and run "make EDITLINE=1" to compile and link Mathomatic with editline. Mathomatic version 16.0.4 released Monday 09/10/12. CHANGES MADE TO MATHOMATIC 16.0.2 TO BRING IT UP TO THE NEXT VERSION: New command "set load" loads the current set options startup file again, displaying the startup file as it reads it in. If the file doesn't exist, or something is wrong, then an error message is displayed and the set command returns with failure. Accidently putting "load" in the startup file is now handled correctly. 08/09/12 - Allow "matho-primes all" and the command "list primes all" in Mathomatic to continually output consecutive prime numbers. 08/12/12 - Fixed any rman errors in the makefile so they won't be ignored. 08/17/12 - rmath and matho no longer set the debug_level or modulus_mode, so they can be set by the startup options file. 08/19/12 - Allow the repeat prefix on the approximate command, making it approximate and simplify as much as the calculate command does. Hopefully someday it will just give a temporary result, too. Numerical input into the symbolic math library now uses "repeat approximate" instead of just "approximate" to approximate the user's input, so the result is the same as the Mathomatic application's result. Disallow the same warnings to be repeatedly displayed, if the current warning is the same as the previous warning. 08/20/12 - Allow directory names as read command arguments, instructing the read command to change the current directory to the specified directory. Without any arguments, the read command now does an "ls" command in Unix/Linux, and "dir" under MS-Windows, listing the current directory contents. Running Mathomatic with a directory name argument now conveniently changes directory to that directory, then gives you the main prompt. 08/28/12 - Made "integer" type variables much more useful. For example, the following now happens generally: 1-> i^(4*integer) #1: i^(4*integer) 1-> simplify #1: 1 1-> i^((4*integer) + 1) #2: i^((4*integer) + 1) 2-> simplify #2: i 2-> i^((4*integer) + 2) #3: i^((4*integer) + 2) 3-> simplify #3: -1 3-> i^((4*integer) + 3) #4: i^((4*integer) + 3) 4-> simplify #4: -1*i 08/29/12 - Displays "Calculating..." whenever autocalc is used now. 08/30/12 - Added ability to set the normal text color. Still defaults to no color. Use "set color 0" to set the normal text color to green, as it has been for many years in the past. 08/31/12 - Removed the "set preserve_surds" option, since the approximate and calculate commands all take care of undoing that. The code remains, however "set preserve_surds" is no longer advertised. I have never used it. Surds are preserved, for accuracy's sake, by default. 09/05/12 - "set" as a null set option works now, so no one will have any trouble setting-up the set options startup file. Mathomatic version 16.0.3 released Saturday 09/08/12.
jperkin
pushed a commit
that referenced
this issue
Jan 7, 2013
Upstream changes: 0.2.1 2012-12-02 17:44:34 Europe/Oslo Updated all traits to use Moose::Util::meta_attribute_alias() to specify trait aliases. Requires at least Moose 0.89. Fixed bug with duplicate class names being returned by Data::Visitor::Callback when traversing a Moose type constraint on perl 5.17.6. Reported by Andreas J. König. (RT #81519) 0.1.1 2011-10-23 14:56:18 Europe/Oslo Fixed bug with has_xpath_value_map throwing exception if xpath_value query returns empty result set. (RT #71815) Reported by Jeffery M. Thompson. 0.1.0 2011-09-27 14:46:03 Europe/Oslo Added multiple helper/sugar functions. (GitHub #2) Fixed problem with XML::Rabbit::Role::Node->dump_xml() throwing exception because of wide characters in print. 0.0.4 2011-03-22 16:16:02 Europe/Oslo Fixed missing trait imports in XML::Rabbit::Role::Node.
jperkin
pushed a commit
that referenced
this issue
Feb 14, 2013
== 1.2.1 / 2013-02-09 * Bugs Fixed: * As seen in rspec/rspec-expectations#200, the release of Diff::LCS 1.2 introduced an unnecessary public API change to Diff::LCS::Hunk (see the change at rspec/rspec-expectations@3d6fc82c for details). The new method name (and behaviour) is more correct, but I should not have renamed the function or should have at least provided an alias. This release restores Diff::LCS::Hunk#unshift as an alias to #merge. Note that the old #unshift behaviour was incorrect and will not be restored. == 1.2.0 / 2013-01-21 * Minor Enhancements: * Added special case handling for Diff::LCS.patch so that it handles patches that are empty or contain no changes. * Added two new methods (#patch\_me and #unpatch\_me) to the includable module. * Bugs Fixed: * Fixed issue #1 patch direction detection. halostatue/diff-lcs#1 * Resolved issue #2 by handling string[string.size, 1] properly (it returns "" not nil). halostatue/diff-lcs#2 * Michael Granger (ged) fixed an implementation error in Diff::LCS::Change and added specs in pull request #8. Thanks! halostatue/diff-lcs#8 * Made the code auto-testable. * Vít Ondruch (voxik) provided the latest version of the GPL2 license file in pull request #10. Thanks! halostatue/diff-lcs#10 * Fixed a documentation issue with the includable versions of #patch! and #unpatch! where they implied that they would replace the original value. Given that Diff::LCS.patch always returns a copy, the documentation was incorrect and has been corrected. To provide the behaviour that was originally documented, two new methods were added to provide this behaviour. Found by scooter-dangle in issue #12. Thanks! halostatue/diff-lcs#12 * Code Style Changes: * Removed trailing spaces. * Calling class methods using '.' instead of '::'. * Vít Ondruch (voxik) removed unnecessary shebangs in pull request #9. Thanks! halostatue/diff-lcs#9 * Kenichi Kamiya (kachick) removed some warnings of an unused variable in lucky pull request #13. halostatue/diff-lcs#13 Thanks! * Embarked on a major refactoring to make the files a little more manageable and understand the code on a deeper level. * Adding to http://travis-ci.org.
jperkin
pushed a commit
that referenced
this issue
Apr 17, 2013
- bug #3828 MariaDB reported as MySQL - bug #3854 Incorrect header for Safari 6.0 - bug #3705 Attempt to open trigger for edit gives NULL - Use HTML5 DOCTYPE - [security] Self-XSS on GIS visualisation page, reported by Janek Vind - bug #3800 Incorrect keyhandler behaviour #2
jperkin
pushed a commit
that referenced
this issue
Apr 24, 2013
databases/phpmyadmin: security update Revisions pulled up: - databases/phpmyadmin/Makefile 1.114 - databases/phpmyadmin/distinfo 1.72 ------------------------------------------------------------------- Module Name: pkgsrc Committed By: tron Date: Tue Apr 9 07:07:05 UTC 2013 Modified Files: pkgsrc/databases/phpmyadmin: Makefile distinfo Log Message: Update "phpmyadmin" package to version 3.5.8. Changes since 3.5.7: - bug #3828 MariaDB reported as MySQL - bug #3854 Incorrect header for Safari 6.0 - bug #3705 Attempt to open trigger for edit gives NULL - Use HTML5 DOCTYPE - [security] Self-XSS on GIS visualisation page, reported by Janek Vind - bug #3800 Incorrect keyhandler behaviour #2 To generate a diff of this commit: cvs rdiff -u -r1.113 -r1.114 pkgsrc/databases/phpmyadmin/Makefile cvs rdiff -u -r1.71 -r1.72 pkgsrc/databases/phpmyadmin/distinfo
jperkin
pushed a commit
that referenced
this issue
Jun 17, 2013
Jason Bacon. Should make gnuradio find swig2. Version 2.0.10 (27 May 2013) ============================ 2013-05-25: wsfulton [Python] Fix Python 3 inconsistency when negative numbers are passed where a parameter expects an unsigned C type. An OverFlow error is now consistently thrown instead of a TypeError. 2013-05-25: Artem Serebriyskiy SVN Patch ticket #338 - fixes to %attribute macros for template usage with %arg. 2013-05-19: wsfulton Fix ccache-swig internal error bug due to premature file cleanup. Fixes SF bug 1319 which shows up as a failure in the ccache tests on Debian 64 bit Wheezy, possibly because ENABLE_ZLIB is defined. This is a corner case which will be hit when the maximum number of files in the cache is set to be quite low (-F option), resulting in a cache miss. 2013-05-09: kwwette [Octave] Fix bugs in Octave module loading: - fix a memory leak in setting of global variables - install functions only once, to speed up module loads 2013-04-28: gjanssens [Guile] Updates in guile module: - Add support for guile 2.0 - Drop support for guile 1.6 - Drop support for generating wrappers using guile's gh interface. All generated wrappers will use the scm interface from now on. - Deprecate -gh and -scm options. They are no longer needed. A warning will be issued when these options are still used. - Fix all tests and examples to have a successful travis test 2013-04-18: wsfulton Apply Patch #36 from Jesus Lopez to add support for $descriptor() special variable macro expansion in fragments. For example: %fragment("nameDescriptor", "header") %{ static const char *nameDescriptor = "$descriptor(Name)"; %} which will generate into the wrapper if the fragment is used: static const char *nameDescriptor = "SWIGTYPE_Name"; 2013-04-18: wsfulton Fix SF Bug #428 - Syntax error when preprocessor macros are defined inside of enum lists, such as: typedef enum { eZero = 0 #define ONE 1 } EFoo; The macros are silently ignored. 2013-04-17: wsfulton [C#] Pull patch #34 from BrantKyser to fix smart pointers in conjuction with directors. 2013-04-15: kwwette [Octave] Fix bugs in output of cleanup code. - Cleanup code is now written also after the "fail:" label, so it will be called if a SWIG_exception is raised by the wrapping function, consistent with other modules. - Octave module now also recognises the "$cleanup" special variable, if needed. 2013-04-08: kwwette Add -MP option to SWIG for generating phony targets for all dependencies. - Prevents make from complaining if header files have been deleted before the dependency file has been updated. - Modelled on similar option in GCC. 2013-04-09: olly [PHP] Add missing directorin typemap for char* and char[] which fixes director_string testcase failure. 2013-04-05: wsfulton [Ruby] SF Bug #1292 - Runtime fixes for Proc changes in ruby-1.9 when using STL wrappers that override the default predicate, such as: %template(Map) std::map<swig::LANGUAGE_OBJ, swig::LANGUAGE_OBJ, swig::BinaryPredicate<> >; 2013-04-05: wsfulton [Ruby] SF Bug #1159 - Correctly check rb_respond_to call return values to fix some further 1.9 problems with functors and use of Complex wrappers. 2013-04-02: wsfulton [Ruby] Runtime fixes for std::complex wrappers for ruby-1.9 - new native Ruby complex numbers are used. 2013-03-30: wsfulton [Ruby] Fix seg fault when using STL containers of generic Ruby types, GC_VALUE or LANGUAGE_OBJECT, on exit of the Ruby interpreter. More frequently observed in ruby-1.9. 2013-03-29: wsfulton [Ruby] Fix delete_if (reject!) for the STL container wrappers which previously would sometimes seg fault or not work. 2013-03-25: wsfulton [Python] Fix some undefined behaviour deleting slices in the STL containers. 2013-03-19: wsfulton [C#, Java, D] Fix seg fault in SWIG using directors when class and virtual method names are the same except being in different namespaces when the %nspace feature is not being used. 2013-02-19: kwwette Fix bug in SWIG's handling of qualified (e.g. const) variables of array type. Given the typedef a(7).q(volatile).double myarray // typedef volatile double[7] myarray; the type q(const).myarray // const myarray becomes a(7).q(const volatile).double // const volatile double[7] Previously, SwigType_typedef_resolve() produces the type q(const).a(7).q(volatile).double // non-sensical type which would never match %typemap declarations, whose types were parsed correctly. Add typemap_array_qualifiers.i to the test suite which checks for the correct behaviour. 2013-02-18: wsfulton Deprecate typedef names used as constructor and destructor names in %extend. The real class/struct name should be used. typedef struct tagEStruct { int ivar; } EStruct; %extend tagEStruct { EStruct() // illegal name, should be tagEStruct() { EStruct *s = new EStruct(); s->ivar = ivar0; return s; } ~EStruct() // illegal name, should be ~tagEStruct() { delete $self; } } For now these trigger a warning: extend_constructor_destructor.i:107: Warning 522: Use of an illegal constructor name 'EStruct' in %extend is deprecated, the constructor name should be 'tagEStruct'. extend_constructor_destructor.i:111: Warning 523: Use of an illegal destructor name 'EStruct' in %extend is deprecated, the destructor name should be 'tagEStruct'. These %extend destructor and constructor names were valid up to swig-2.0.4, however swig-2.0.5 ignored them altogether for C code as reported in SF bug #1306. The old behaviour of using them has been restored for now, but is officially deprecated. This does not apply to anonymously defined typedef classes/structs such as: typedef struct {...} X; 2013-02-17: kwwette When generating functions provided by %extend, use "(void)" for no-argument functions instead of "()". This prevents warnings when compiling with "gcc -Wstrict-prototypes". 2013-02-17: kwwette [Octave] Minor fix to autodoc generation: get the right type for functions returning structs. 2013-02-15: wsfulton Deprecate typedef names used in %extend that are not the real class/struct name. For example: typedef struct StructBName { int myint; } StructB; %extend StructB { void method() {} } will now trigger a warning: swig_extend.i:19: Warning 326: Deprecated %extend name used - the struct name StructBName should be used instead of the typedef name StructB. This is only partially working anyway (the %extend only worked if placed after the class definition). 2013-02-09: wsfulton [CFFI] Apply patch #22 - Fix missing package before &body 2013-01-29: wsfulton [Java] Ensure 'javapackage' typemap is used as it stopped working from version 2.0.5. 2013-01-28: wsfulton [Python] Apply patch SF #334 - Fix default value conversions "TRUE"->True, "FALSE"->False. 2013-01-28: wsfulton [Java] Apply patch SF #335 - Truly ignore constructors in directors with %ignore. 2013-01-18: Brant Kyser [Java] Patch #15 - Allow the use of the nspace feature without the -package commandline option. This works as long and the new jniclasspackage pragma is used to place the JNI intermediate class into a package and the nspace feature is used to place all exposed types into a package. 2013-01-15: wsfulton Fix Visual Studio examples to work when SWIG is unzipped into a directory containing spaces. 2013-01-15: wsfulton [C#] Fix cstype typemap lookup for member variables so that a fully qualified variable name matches. For example: %typemap(cstype) bool MVar::mvar "MyBool" struct MVar { bool mvar; }; 2013-01-11: Brant Kyser [Java, C#, D] SF Bug #1299 - Fix generated names for when %nspace is used on classes with the same name in two different namespaces. 2013-01-11: Vladimir Kalinin [C#] Add support for csdirectorin 'pre', 'post' and 'terminator' attributes. 2013-01-08: olly [PHP] Fix to work with a ZTS build of PHP (broken in 2.0.7). 2013-01-07: olly Fix bashism in configure, introduced in 2.0.9. 2013-01-06: wsfulton Pull patch #4 from ptomulik to fix SF Bug #1296 - Fix incorrect warning for virtual destructors in templates, such as: Warning 521: Illegal destructor name B< A >::~B(). Ignored. 2013-01-05: wsfulton [Python] Pull patch #3 from ptomulik to fix SF Bug #1295 - standard exceptions as classes using the SWIG_STD_EXCEPTIONS_AS_CLASSES macro. 2013-01-04: wsfulton [Java] Pull patch #2 from BrantKyser to fix SF Bug #1283 - fix smart pointers in conjuction with directors. 2013-01-03: wsfulton [Java] Pull patch #1 from BrantKyser to fix SF Bug #1278 - fix directors and nspace feature when multilevel namespaces are used. Version 2.0.9 (16 December 2012) ================================ 2012-12-16: wsfulton Fix garbage line number / empty file name reporting for some missing '}' or ')' error messages. 2012-12-15: kkaempf [Ruby] Apply patch 3530444, Class#methods and Class#constants returns array of symbols in Ruby 1.9+ 2012-12-14: kkaempf [Ruby] Apply patch 3530439 and finally replace all occurrences of the STR2CSTR() macro with StringValuePtr(). STR2CSTR was deprecated since years and got removed in Ruby 1.9 2012-12-14: kkaempf [Ruby] Applied patches #3530442 and 3530443 to adapt compile and runtime include paths to match Ruby 1.9+ 2012-12-14: wsfulton [CFFI] Fix #3161614 - Some string constants are incorrect 2012-12-13: wsfulton [CFFI] Fix #3529690 - Fix incorrect constant names. 2012-12-12: drjoe [R] add fix to finalizer that was missed earlier 2012-12-11: wsfulton [Python] Apply patch #3590522 - fully qualified package paths for Python 3 even if a module is in the same package. 2012-12-08: wsfulton [Python] Bug #3563647 - PyInt_FromSize_t unavailable prior to Python 2.5 for unsigned int types. 2012-12-08: wsfulton [Perl] Fix bug #3571361 - C++ comment in C wrappers. 2012-12-07: wsfulton [C#] Apply patch #3571029 which adds missing director support for const unsigned long long &. 2012-11-28: kwwette [Octave] Simplified module loading: now just the syntax $ example; is accepted, which loads functions globally but constants and variables relative to the current scope. This make module loading behaviour reliably consistent, and reduces problems when loading modules which depend on other modules which may not have been previously loaded. 2012-11-27: wsfulton [cffi] Fix junk output when wrapping single character literal constants. 2012-11-17: wsfulton [Tcl, Modula3] Add missing support for -outdir. 2012-11-17: wsfulton Fix segfaults when using filename paths greater than 1024 characters in length. 2012-11-14: wsfulton [ccache-swig] Apply patch #3586392 from Frederik Deweerdt to fix some error cases - incorrectly using memory after it has been deleted. 2012-11-09: vzeitlin [Python] Fix overflow when passing values greater than LONG_MAX from Python 3 for parameters with unsigned long C type. 2012-11-09: wsfulton Fix some feature matching issues for implicit destructors and implicit constructors and implicit copy constructors added with %copyctor. Previously a feature for these had to be fully qualified in order to match. Now the following will also match: %feature("xyz") ~XXX(); struct XXX {}; 2012-11-09: wsfulton Further consistency in named output typemap lookups for implicit constructors and destructors and implicit copy constructors added with %copyctor. Previously only the fully qualified name was being used, now the unqualified name will also be used. For example, previously: example.i:38: Searching for a suitable 'out' typemap for: void Space::More::~More Looking for: void Space::More::~More Looking for: void Now the unqualified name is also used: example.i:38: Searching for a suitable 'out' typemap for: void Space::More::~More Looking for: void Space::More::~More Looking for: void ~More Looking for: void 2012-11-02: wsfulton Fix some subtle named output typemap lookup misses, the fully qualified name was not always being used for variables, for example: struct Glob { int MyVar; }; Previously the search rules (as shown by -debug-tmsearch) for the getter wrapper were: example.i:44: Searching for a suitable 'out' typemap for: int MyVar Looking for: int MyVar Looking for: int Now the scope is named correctly: example.i:44: Searching for a suitable 'out' typemap for: int Glob::MyVar Looking for: int Glob::MyVar Looking for: int MyVar Looking for: int 2012-10-26: wsfulton Fix director typemap searching so that a typemap specified with a name will be correctly matched. Previously the name was ignored during the typemap search. Applies to the following list of typemaps: directorout, csdirectorout, cstype, imtype, ctype, ddirectorout, dtype, gotype, jtype, jni, javadirectorout. 2012-10-11: wsfulton Most of the special variables available for use in %exception are now also available for expansion in %extend blocks. These are: $name $symname $overname $decl $fulldecl $parentname $parentsymname, see docs on "Class extension" in SWIGPlus.html. Patch based on submission from Kris Thielemans. 2012-10-10: wsfulton Additional new special variables in %exception are expanded as follows: $parentname - The parent class name (if any) for a method. $parentsymname - The target language parent class name (if any) for a method. 2012-10-08: iant [Go] Generating Go code now requires using the -intgosize option to indicate the size of the 'int' type in Go. This is because the size of the type is changing from Go 1.0 to Go 1.1 for x86_64. 2012-09-14: wsfulton Add new warning if the empty template instantiation is used as a base class, for example: template <typename T> class Base {}; %template() Base<int>; class Derived : public Base<int> {}; gives the following warning instead of silently ignoring the base: cpp_inherit.i:52: Warning 401: Base class 'Base< int >' has no name as it is an empty template instantiated with '%template()'. Ignored. cpp_inherit.i:51: Warning 401: The %template directive must be written before 'Base< int >' is used as a base class and be declared with a name. 2012-09-11: wsfulton [Java] Fix #3535304 - Direct use of a weak global reference in directors sometimes causing seg faults especially on Android. 2012-09-06: wsfulton [Java] Fix (char *STRING, size_t LENGTH) typemaps to accept NULL string. 2012-08-26: drjoe [R] make ExternalReference slot ref to contain reference 2012-08-26: drjoe [R] fix Examples/Makefile to use C in $(CC) rather than $(CXX)
jperkin
pushed a commit
that referenced
this issue
Jul 2, 2013
* Update MASTER_SITES. * Hardcode PLOTICUS_PREFABS environment values. Changelog: Ploticus 2.42 - May 2013 Maintenance release with these bug fixes: various code updates to reduce warnings arising from newer gcc versions / lint in strict mode. chron prefab - fixes to the error bars; data point symbols heatmap prefab - wasn't obeying the legend=no parameter... fixed. proc boxplot - incorrect error message on number of statfields supplied, and likely other erratic behavior, when doing median-based bars plus a mean symbol. the 'legendlabel' attribute was only accepting first whitespace-delimited token... should accept entire line. Affected these procs: bars, curvefit, lineplot, scatterplot, and vector. Version 2.41 (May 2009) - new features: New proc: proc pvalue for computing pvalues associated with t-test. proc scatterplot - new attribute colorfield allows you to control data point color directly from a data field (not involving the legend-driven technique). proc areadef - new attributes clickmapadjust for tweaking the overall position of grid clickmap, and catbinsadjust useful in setting up a plotting area with categories that are slid -0.5. proc print - new variable that is set called FOUNDROW, which lets you determine which data row contains a given value, then pass the row number to the $datarow() function proc catlines - column bars category names having embedded whitespace can now be used for positioning (use underscores in the location spec) prefabs - new parameters xgridskip, ygridskip, xgridblocks, ygridblocks, firststub, laststub 2.41 bug fixes Thanks to all those who reported and/or supplied fixes for these bugs... C coding issue - string pointer comparisons, was ok on gcc but failed on sun C compiler and others clickmap - double url encoding bug tokncpy() fix affecting win32 builds proc processdata action: breaks not setting NRECORDS to 0 on eof proc processdata - result field names are set later, allowing current field names to be used in select statements on clickmap tags, alt= attribute added so that output passes xml validation numgroup() function - contributed bugfix installed datetime stubs - seconds were incorrect clickmap urlencoding - spaces are now urlencoded to %20 (previously was +) direct pixel data points are now influenced by -scale proc catlines able to function with just one subcat (use to require at least two) instability related to field name headers, getfname() memory leak in grgd.c, Gptlist date stubs dislaying garbage when given unrecognized date format string lineplot XFINAL was incorrect Version 2.40 (Jan 2008) New features: A revision pass was done affecting all script and attribute parsing, with the goal of eliminating attribute length restrictions where possible, and reducing string copy operations. proc catlines proc tree proc getdata ... data sets using the bar character (|) as field delimiter are now supported. Also, there's now delim: auto which tries to automatically determine data field delimitation. proc processdata ... new actions: summary, summaryplus, raccum ... new attributes binsize, binmod proc boxplot (formerly proc rangebar) ... functionality change.. it now produces a set of boxplots in a similar way to how other procs (such as proc bars) operate. Any existing scripts using proc rangebar will require attention. new pl(1) command line options -pixsize (to set exact size of result image in pixels), and -cputime (to set cputime resource limit). As usual these have equivalent settings in proc page and/or proc settings axis autorange now supports the following: nearest=Nminute nearest=second nearest=Nsecond proc image (formerly called proc import)... gifs can be imported. Images can now be incorporated into SVG plot results. Clickmap support. symboldetails ... imgfile, imgwidth, imgheight color ... color specifications using notation such as xFEDCBA now supported Slanted axis stubs are now supported. See proc axis stubvert parameter A number of other new attributes that are specialized or of minor interest 2.40 Bug fixes bug related to legend-driven bar graphing direct pixel data points inherit current line dashing .. symboldetails needs to set linetype to plain segfault occuring after error 12040 "DISPLAY=" ? svg compile and swf segfault bugs proc getdata - recent fix related to #field names and #data fields needs to take filters into account proc categories - when cats specified literally, trailing whitespace is taken as part of category proc image segfaults with -x11 proc lineplot - gapmissing autozero not working right segfault when -csmap is used with long urls proc processdata MIN, MAX - not affected by 'resultformat' but should be First x stub is a little higher than the others gd color bug when degenerate data row encountered [color change bug - lineplot gapmissing and fill options] prefab chunk_title - align= was giving backward results proc bars - segments - code bug demonstrated by gallery/timeline2.htm proc bars - instability related to color change optimization (wild draw location) prefab cumufrac - no curve produced for certain input data (see msg 1974) clickmap - the clickmap entries for plot elements sitting on top of a clickmap grid are written too late in the map and mouse doesn't respond. For gif/png/jpg imagemaps, need to write map entires in this order: 1) plot element regions 2) xy grid regions 3) single-dimention grid regions. (svg uses the opposite order) scripts having embedded CSV data (w rows > 255) can break script processor causing instability. proc annotate instability on filled rectangle draw caused by unitialized bd* vars proc curvefit - xfield was required, but doesn't need to be legend - repeated use of legends eventually gives "Sorry, too much legend content" msg prefab overlays - each run needs to output a code into the dumpfile that tells pcode to do a graphics init. Otherwise, run 2 inherits current color (other settings?) left behind by run1 proc axis - stubround - 1st stub seems to be often omitted even when it is a round value (snps/distplot) URL encoding shouldn't encode '.' or other normal punctuation chars.. floating bars weirdness instability when trying to #set a var to length > 334 chars instability when supplying a long perl script with #proc getdata commandmr ticus 2.33 (June 2006) New features direct pixel data point symbols for gd and x11, to provide sharp non-distorted data points. In the example below the first two rows use the new direct pixel data points, while the 3rd row shows the vector-based data points that have always been available. proc venndisk - some new attributes to support "vennmag" plots (a series of disks resting on X axis to compare magnitudes). Here's an example: clickmaps - new clickmapurl syntax to allow deployment in a new window, etc. Syntax is like this: clickmapurl: [target=new]http://abc.com/cgi-bin/... SVG - proc settings / config files - svg_linkparms attribute discontinued. Use the new clickmapurl syntax (see above) proc axis - stubround attribute - solves the old problem of getting stubs at round number locations when plot area minima is not at a round location. proc lineplot - gapmissing: autozero proc bars - new attributes for better control of bar labels: labelmustfit, labelmaxlen, labelselect pl command line -ping option proc scatterplot - cluster attribute - default will now be 'no' prefab scat - new parm ptstyle= filled or outline ..... and changed to use the new direct pixel data point symbols. 2.33 Bug fixes clickmap - url encoding is now performed on variable contents and axis values that are substituted into clickmapurls proc categories - uniqueness check wasn't applied when categories listed literally. Useful in apps where the list is generated by another program or whatever. improved handling of very long command line args - each arg is silently truncated to 255 chars. var=value parameters cannot begin with a dash as may have been previously tolerated. var=value parameters are now intercepted before entering the arg name big decision structure. $dategroup() function didn't know about datetime separator characters other than '.' issue where the "circuit breaker tripped" message was appearing when autorange is used but no stubs / no tics were being generated ploticus api code bug - prefabs were not usable via api made adjustments to improve rounding error when axis begins in negative space and reaches zero, zero was shown a very tiny scientific notation number proc processdata - percents - resulting data values were written as enclosed in quotes which made them unplottable. fixed many compile warnings when building w/ gcc4 -Wall drawing to out-of-bounds locations (GD) resulted in huge image. The pl bounding box was set to a huge rectangle due to a wild draw op.. then the final GD crop operation used the huge bounding box to set the size for the cropped result. Fixed by limiting final result to 'pagesize'. proc bars - longways labels on bars that travel beyond plot area boundary weren't being shown/centered properly. in the -scale parameter, if you used -scale 1,2 the scale did not change but -scale 1.01,2 does work. Fixed- some code was only taking action if x scale != 1.0 svg - opening <svg> tag didn't have xmlns:xlink parameter (always); font size didn't have "pt" on end (firefox 1.5 / easytimeline) proc getdata - instability when there were more field names than available data fields. Fixed - number of field names now sets the 'nfields' idea of how many fields there are. This only happens when nfields is not explicitly specified. scatterplot - short line segments as symbols - no legend entries were appeariing proc legend - longer line segments were colliding with other entries in "across" format proc rangesweep - instability when bad values encountered in data proc annotate - box outline color not being set properly proc bars - showvalues - conflict between "backbox" and "labeldetails: color=" pl -errfile stdout (w/ no other args) gave seg fault prefab scat - new maxinpoints= parameter (for curvefit) heatmaps - with contentfield= and values 0.0 -> 1.0 .. cutoff table was not automatically created properly. prefabs - some prefab parameters cannot be set in a data file.. because they are set in the prefab script before getting the data. More detailed explaination in docs. -tag command line arg wasn't generating the <embed> tag for svg scatterplot - heatmap-related cell coloring bug draw prefab - win32 issue with dumpfile autorange - code bug involving nearest=hours Ploticus 2.32 (Aug 2005) - New features proc legend - support for multi-column or multi-row legends, word wrap for legend entries, backing box, title, and others. Thanks to Philippe Jalaber and Tobias Minich who suggested some of these features. Examples proc venndisk - new proc for producing venn diagrams. example textdetails - new linesep attribute to control line spacing. mousover/tooltip labels can now be up to 1500 chars. Also any proc that had a clickmaplabel attribute now also has a clickmaplabeltext multiline attribute. This is to accomodate chunks of javascript code as used with SVG mouseover/tooltip method #2. proc axis - month stub inc with datetime scaletype now supported. proc pie - new wraplen attribute to wordwrap pie slice labels new function - $rewritenum(f) which takes a numeric quantity f and returns it rewritten for display purposes, applying numbernotation (as specified in your proc settings or config file) new function - $textwidth(f) returns horizontal width of FreeType bounding box. Useful only with freetype fonts, otherwise it returns 0. Suggested/contributed by Erik Zachte. autorange - if user doesn't specify numformat, %f is now automatically used to build result with high magnitude low variance data sets (such as where the min is 1,000,000 and the max is 1,000,003). Prefab parameters for access to some of the new proc legend features; and some other prefab items. More info 2.32 Bug fixes date notations involving dots (such as dd.mm.yy) weren't being handled properly gd16.c gcc 4 compile issue (static int cost, static int sint) crosshatch lines were too thin w/ svg proc bars - with 'truncate', bar completely out of range was suppressed but label still appears drawcommands ignored cm units - fixed. Also, mark and cblock now accept posex specifications. heatmap prefab - now supports title and related parameters. superscripts in X axis stubs showed up on Y axis - fixed autorange - now handles degenerate case where all data are 0 proc vector - instability if start and end points of a vector are same proc getdata no longer does a popen( cat filename ) in CGI mode strange color change problem - related to certain degenerate lineplots that don't draw anything. Bug in proc_lineplot.c fixed. proc legend width attribute now supports cm heatmap prefab - yaxis=none didn't have any effect. Fixed. proc pie - with outlinedetails: none the labels and any associated lines disappeared proc scatterplot - default clustermethod was horizontal when ylocation given.. and vertical when xlocation given.. seems like it should be the other way round.. so I changed it. with datetime (others?) xautorange nearest=exact wasn't working command line option -prefab is now disabled when operating in direct cgi mode command line option -drawdumpa displayed to x11 but shouldn't
jperkin
pushed a commit
that referenced
this issue
Jul 4, 2013
to allow package to continue to work as previously packaged. +LICENSE; From NEWS: tig-1.1 ------- Incompatibilities: - Disable diff move/copy detection by default, boosting diff performance on larger projects. Use git config 'diff.renames' option (git-wide) to set your preferred behavior. Environment variable TIG_DIFF_OPTS can be used to restore the old behavior. - Values set for author-width and filename-width will result in widths one character bigger than previously. Improvements: - Typing a text in the prompt will be interpreted as a tig command. Prefixing the command with a '!' will execute this system command in an external pager. Entering a single key will execute the corresponding key binding. - Basic support for wrapping long line in pager, diff, and stage views. Enable using: `set wrap-lines = yes`. (GH #2) - User-defined commands prefixed with a '?' means prompt before execution. Example: `bind main B !?git rebase -i %(commit)`. - User-defined commands prefixed with a '<' means exit after execution. Example: `bind main C !<git commit`. (GH #66) - User-defined commands are executed unquoted to support shell commands. Example: `bind generic I !@sh -c "echo -n %(commit) | xclip -selection c"`. (GH #65) - Configure case-insensitive searches using: `set ignore-case = yes`. - Add "deleted mode" line type for better diff coloring. - Open editor when requesting edit action from within a file diff. - Update AX_WITH_CURSES to build under Cygwin. - Improve tigrc(5) documentation. (Debian #682766) - Allow to build on Mac OS 10.7 without the configure script. (GH #25) - Add option to split the view vertically instead of horizontally. Example: `set vertical-split = yes'. (GH #76) - Add 'show-id' and 'id-width' options to configure the display of commit IDs in the main view and ID width in the blame view. (GH #77) - Allow to override git-based encoding to UTF-8 by setting 'i18n.commitencoding' or 'gui.encoding'. - Improve autobuild support to track generated files and work with autoreconf 2.61. - Commit IDs are read from stdin when --stdin is given; works for main and diff view, e.g. `tig --no-walk --stdin < cherry-picks.txt`. - Add option to disable focusing of the child view when it's opened. Disable using: `set focus-child = no`. (GH #83) - Allow to open blob related with added content in a diff. (GH #91) Bug fixes: - Fix commit graph regression when a path spec is specified. (GH #53) - Main view: only show staged/unstaged changes for the current branch. - Support submodules created with current version of git. (GH #54) - Fix diff status message for file diffs with no content changes. - Fix parent blaming when tig is launched in subdirectory. (GH #70) - Do not show deleted branch when reloading the branch view. tig-1.0 ------- The master repository is git://github.com/jonas/tig.git, and the old master repository (http://jonas.nitro.dk/tig/tig.git) will be retired. Improvements: - Use git-log(1)s default commit ordering. The old behavior can be restored by adding `set commit-order = topo` to ~/.tigrc. - Support staging of single lines. Bound to '1' default. (GH #21) - Use +<lineno> to open the initial view at an arbitrary line. (GH #20) - Add show-notes ~/.tigrc option. Notes are displayed by default. - Support jumping to specific SHAs in the main view. - Decorate replaced commits. - Display line numbers in main view. - Colorize binary diff stats. (GH #17) - Custom colorization of lines matching a string prefix (GH #16). Example configuration: color "Reported-by:" green default - Use git's color settings for the main, status and diff views. Put `set read-git-colors = no` in ~/.tigrc to disable. - Handle editor options with multiple arguments. (GH #12) - Show filename when running tig blame with copy detection. (GH #19) - Use 'source <path>' command to load additional files from ~/.tigrc - User-defined commands prefixed with '@' are run with no console output, e.g. bind generic 3 !@rm sys$command - Make display of space changes togglable in the diff and stage view. Bound to 'W' by default. - Use per-file encoding specified in gitattributes(5) for blobs and unstaged files. - Obsolete commit-encoding option and pass --encoding=UTF-8 to revision commands. - Main view: show uncommitted changes as staged/unstaged commits. Can be disabled by putting `set show-changes = no` in ~/.tigrc. - Add %(prompt) external command variable, which will prompt for the argument value. - Log information about git commands when the TIG_TRACE environment variable is set. Example: `TIG_TRACE=/tmp/tig.log tig` - Branch view: Show the title of the last commit. - Increase the author auto-abbreviation threshold to 10. (GH #49) - For old commits show number of years in relative dates. (GH #50) Bug fixes: - Fix navigation behavior when going from branch to main view. (GH #38) - Fix segfault when sorting the tree view by author name. - Fix diff stat navigation for unmodified files with stat changes. - Show branches/refs which names are a substring of the current branch. - Stage view: fix off-by-one error when jumping to a file in a diff with only one file. - Fix diff-header colorization. (GH #15) tig-0.18 -------- Incompatibilities: - Remove support for the deprecated TIG_{MAIN,DIFF,LOG,TREE,BLOB}_CMD environment variables. Improvements: - Pressing enter on diff stat file lines will jump to file's diff. - Naïvely color blame IDs to distinguish lines. - Document palette color options used for revision graph and blame IDs. - Add support for blaming diff lines. - Add diff-context option and bindings to increase the diff context in the diff and stage view. - (GH-6) Make blame configurable via extra options passed from the command line and blame-options setting from ~/.tigrc. For example: set blame-options = -C -C -C Bug fixes: - Expand browsing state variables for prompt. (LP #694780, Debian #635546) - Fix segfault when sorting the branch view by author. - Expand %(directory) to . for the root directory. (GH-3) - Accept 'utf-8' for the line-graphics option as indicated in the docs. - Use erasechar() to check for the correct backspace character.
mamash
pushed a commit
that referenced
this issue
Aug 12, 2013
Upstream changes: ----------------------------------------- version 1.24 at 2013-06-21 07:01:12 +0000 ----------------------------------------- Change: 73f1b5bdee2bcf52a9e39f7ae61ca4d003881f22 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-06-21 08:01:12 +0000 Updated for v5.19.1 Change: 76c5a70570ee99229c4553717e4368782dad77c7 Author: Chris Williams <[email protected]> Date : 2013-05-27 03:05:10 +0000 Merge pull request #2 from salva/give-more add sub 'perl_versions' that returns the list of versions supported by the module Change: 311199c26fcf63d80b39bcacc462e87e0b593aed Author: Salvador <[email protected]> Date : 2013-05-27 11:06:12 +0000 add tests for perl_versions sub Change: fe9542930febd38718ecaf459c80da36507e9741 Author: Salvador <[email protected]> Date : 2013-05-27 10:08:41 +0000 add perl_versions function returning list of perl versions known to the module ----------------------------------------- version 1.22 at 2013-05-20 13:25:00 +0000 ----------------------------------------- Change: ed957be9c3111676ffb25194a8531928032b2746 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-20 14:25:00 +0000 Fixing distribution Change: 6582aa42e3fe2769ed1588c75f1f3ee9362593f0 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-20 14:24:10 +0000 Updated for v5.19.0 ----------------------------------------- version 1.20 at 2013-05-18 13:57:11 +0000 ----------------------------------------- Change: 031e41245d08267e244c8446e8085d695e8956c7 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-18 14:57:11 +0000 Updated for v5.18.0 \o/ ----------------------------------------- version 1.16 at 2013-05-16 06:55:41 +0000 ----------------------------------------- Change: bfc7cb272a3854f5a61aed2f40591e74f01d5f29 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-16 07:55:41 +0000 Updated for v5.18.0-RC4 ----------------------------------------- version 1.14 at 2013-05-13 21:59:54 +0000 ----------------------------------------- Change: 3882ae87524c944ef1c63ead804c583e9165a43b Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-13 22:59:54 +0000 Updated for v5.18.0-RC3 ----------------------------------------- version 1.12 at 2013-05-13 07:11:33 +0000 ----------------------------------------- Change: 625b20e9dee61f43d054f0e798399611c70f1bce Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-13 08:11:33 +0000 Updated for v5.18.0-RC1/RC2 ----------------------------------------- version 1.10 at 2013-04-21 08:23:41 +0000 ----------------------------------------- Change: d369eb6b8a337a0365e74f79af7c1b7cca5a0f3e Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-04-21 09:23:41 +0000 Updated for v5.17.11
jperkin
pushed a commit
that referenced
this issue
Nov 3, 2013
------------------------------------------ version 0.004 at 2013-11-02 22:06:57 +0000 ------------------------------------------ Change: 474d456a510b53f357b96e346ba45160e554d0be Author: Torsten Raudssus <[email protected]> Date : 2013-11-02 23:06:50 +0000 New travis config Change: 7ad16ca45b63d72deb5db6cbbce4f787046f6013 Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 add some comfort as primary author desires To avoid scaring users the Getty wants some improved examples and an accessor for last cmd in chain. Change: 3b7ea438bf9d041895b37781e3ea20733caa5e08 Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 add some samples to role author wants ('examples') x INT_MAX - unfortunately he gets only one Change: 16ab8ee5a435405b22a57c83b59bf2b6ce90ba5c Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 move initialization to MooX::Cmd::Role * as discussed with Getty in #web-simple, let MooX::Cmd be a bootstrap loader only and modern implementations can do with "MooX::Cmd::Role"; * allow modify all initialization parameters via class _build_ functions (called in class context, but as method) Change: e8b4dea42c571e7842f250b9d75bfc680dfe24ed Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 improve documentation Change: bd75c0701c52b3742a5c7aa53d7e058c6327d2e1 Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 allow Class->new_with_cmd->execute(...) Change: 1e585ce9de10745e06d0399a9beaae4d090261d5 Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 move initialization sequence for cmd into role as discussed with primary author, a role having all neat information about the cmd state in attributes is smarter that passing arguments ... Change: 8be5fbb8369983ae1e225b5b9ee1130f13c34169 Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 simplify loading commands to avoid stack frames Change: 08355a05811a3df9b044f69eed504aaa0180eba1 Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 remove trailing \t Change: 11c618f8bfc0563cc5a5ca44fdcfbcb160054cdf Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 some safety first checks and minor optimizations Change: bfbe63ec3572c8b0c62c77288f4939b04e05dfb8 Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 allow commands show available neighbours/children Change: 1368cf9f99b5b9496d9ae4e78ef7a04dd3cbe9ee Author: Jens Rehsack <[email protected]> Date : 2013-11-02 23:00:05 +0000 bump Module::Pluggable version to stop 5.18 from whining and let it work smoothly on blead Change: 03139b6fb4c4fb003661ceefd3522183d822985f Author: Torsten Raudssus <[email protected]> Date : 2013-10-29 11:07:19 +0000 Merge pull request #2 from yanick/master only load commands if used
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
while here, * LICENSE=gnu-gpl-v2 * no need to buildlink with py-boto, simple DEPENDS is sufficient. * no need to depend on py-gnupg, this package contains own one. * fixes locale dir. * distutils package, register egg-info. New in v0.6.16 (2011/10/16) ---------------------------- Enhancements: - Usability enhancement: sign passphrase prompt has no second verification prompt anymore, symmetric passphrases are still verified - Fixed Unicode errors when translations are used. - Replaced old tarfile.py with Python 2.7 version, modded to support Python 2.4 syntax. Bugs closed in this release: 485219 Fixed fields are not fixed, leading to buffer overflows... 676109 Amazon S3 backend multipart upload support 690549 uid and guid setting adversely affects integrity 739438 Local backend should always try renaming instead of copying 832149 Uploads to Rackspace fail silently 835892 duplicity crash: "AssertionError: rb None None" 838162 Duplicity URL Parser is not parsing IPv6 properly 838264 Duplicity thinks partial encrypted backups are not encrypted 870116 Duplicity does not handle UIDs higher than 60001 Merges: lp:~ed.so/duplicity/reuse-passphrase-for-signing-fix lp:~mterry/duplicity/cloudfiles-10k lp:~duplicity-team/duplicity/check-volumes lp:~mterry/duplicity/tarfile lp:~mterry/duplicity/partial-encryption lp:~mterry/duplicity/fix-local-backend-validation lp:~ross-ross-williams/duplicity/gpg-agent-fix lp:~mterry/duplicity/rbNoneNone lp:~ed.so/duplicity/UnicodeDecodeError New in v0.6.15 (2011/08/19) ---------------------------- Enhancements: - Ignore 404 errors when deleting a file on Ubuntu One. - Ignore ENOENT (file missing) errors where it is safe. - Set minimum Python version to 2.4 in README. - introduce --numeric-owner parameter patch courtesy of Lukas Anzinger <l.anzinger AT gmail.com> - duplicity:restore_check_hash "Invalid data - *** hash mismatch" lists the offending filename - fixes to unit tests to support SIGN_PASSPHRASE Bugs closed in this release: 524922 duplicity does not have numeric uid/gid support 703142 AssertionError: assert len(chain_list) == 2 794576 Transport endpoint is not connected 815635 Bad passphrase can leave bogus sigtar in archive 818178 Shouldn't try to delete files it knows don't exist 821368 Error doing backup of the .evolution folder 823556 sftp errors after rev 740 change 824678 0.6.14 Fails to install on 8.04 LTS (Hardy) Merges: lp:~mterry/duplicity/u1-ignore-404 lp:~mterry/duplicity/guard-tarinfo lp:~mterry/duplicity/enotconn lp:~mterry/duplicity/look-at-partials-during-sync lp:~mterry/duplicity/more-accurate-sync lp:~mterry/duplicity/report-encrypted-chains lp:~mterry/duplicity/815635 lp:~mterry/duplicity/retry-u1 lp:~mterry/duplicity/818178 lp:~ed.so/duplicity/encr-sign-key2 lp:~mterry/duplicity/u1-fixes lp:~carlos-abalde/duplicity/google-docs lp:~ed.so/duplicity/numowner+hashverbose New in v0.6.14 (2011/06/18) ---------------------------- Enhancements: 452342 Provide Ubuntu One integration Bugs closed in this release: 433591 AttributeError: FileobjHooked instance has no attribute 'name' 487720 Restore fails with "Invalid data - SHA1 hash mismatch" 507904 Cygwin: Full Backup fails with "IOError: [Errno 13] Permission denied" 512628 --exclude-filelist-stdin and gpg error with/without PASSPHRASE 680425 Endless retype passphrase when typo 705499 "include-filelist-stdin" not implemented on version 0.6.11 739438 [PATCH] Local backend should always try renaming instead of copying 753858 cannot import name S3ResponseError 761688 Difference found: File X has permissions 666, expected 666 777377 collection-status asking for passphrase 778215 ncftpls file delete fails in ftpbackend.py 782294 create tomporary files with sftp 782321 duplicity sftp backend should ignore removing a file which is not there 792704 Webdav(s) url scheme lacks port support 782294 create tomporary files with sftp 782337 sftp backend cannot create new subdirs on new backup 794123 Timeout on sftp command 'ls -1' 797758 Duplicity ignores some FatalErrors 793096 Allow to pass different passwords for --sign-key and --encrypt-key Merges: lp:~ed.so/duplicity/0.6-add_sftp lp:~ed.so/duplicity/0.6-nonfatal-exclude lp:~lekensteyn/duplicity/multipass lp:~mterry/duplicity/797758 lp:~mterry/duplicity/gio-name lp:~mterry/duplicity/levelName lp:~mterry/duplicity/retry-decorator lp:~mterry/duplicity/u1-status New in v0.6.13 (2011/04/02) ---------------------------- Enhancements added this release: New manual test to make Ctrl-C issues easier to replicate. Use python-virtualenv to make testing multiple Python versions easier. In boto backend check for existing bucket before trying to create. Bugs closed in this release: 579958 Assertion error "time not moving forward at appropriate pace" 613244 silent data corruption with checkpoint/restore 731905 File "/usr/bin/duplicity", error after upgrade from 6.11 to 6.12 New in v0.6.12 (2011/03/08) ---------------------------- Enhancements added this release: 626915 ftps support using lftp (ftpsbackend) Bugs closed in this release: 486489 Only full backups done on webdav 578663 Use log codes for common backend errors 581054 Inverted "Current directory" "Previous directory" in error message 620163 OSError: [Errno 2] No such file or directory 629136 sslerror: The read operation timed out with cf 629984 boto backend uses Python 2.5 conditional 655797 symbolic link ownership not preserved 670891 Cygwin: TypeError: basis_file must be a (true) file ... 681980 Duplicity 0.6.11 aborts if RSYNC_RSH not set 700390 Backup fails silently when target is full (sftp, verbosity=4) 704314 Exception in log module Merges: lp:~mterry/duplicity/backend-log-codes3 lp:~blueyed/duplicity/path-enodev-bugfix New in v0.6.11 (2010/11/20) ---------------------------- Bugs closed in this release: 433970 Add an option to connect to S3 with regular HTTP (and not HTTPS) 578663 Use log codes for common backend errors 631275 missing ssh on rsyncd url - rsync: Failed to exec ssh: ... 635494 backed up to S3, wiped drive, reinstalled, unable to restore backup 637556 os.execve should get passed program as first argument 669225 sftp: "Couldn't delete file: Failure'" only logged on level 9 655468 0.6.10 does not work with S3 674506 RsyncBackend instance has no attribute 'subprocess_popen_persist' Merges: lp:~blueyed/duplicity/bug-669225 lp:~duplicity-team/duplicity/po-updates lp:~ed.so/duplicity/0.6.10-backend_fixes lp:~ed.so/duplicity/RSYNC_RSH-fix lp:~ed.so/duplicity/sign_symmetric2 lp:~ed.so/duplicity/survive_spaces lp:~l2g/duplicity/use-py.test lp:~mbp/duplicity/433970-non-ssl New in v0.6.10 (2010/09/19) ---------------------------- Bugs closed in this release: 542482 Offer command to remove old incremental backups from target 578663 Use log codes for common backend errors 589495 duplicity --short-filenames crashes with TypeError 612714 NameError: global name 'parsed_url' is not defined 613448 ftpbackend fails if target directory doesn't exist 615449 Command-line verbosity parsing crash New in v0.6.09 (2010/07/25) ---------------------------- Bugs closed in this release: 502609 Unknown error while uploading duplicity-full-signatures 539393 Duplicity returns 1 when continuing an interrupted backup 550455 duplicity doesn't handle with large files well 567738 --ssh-options options passing options to ssh do not work 576564 username not url decoded in backend (at least rsync) 579958 Assertion error "time not moving forward at appropriate pace" 582962 Diminishing performance on large files Upgraded tahoebackend to new parse_url. Fix to warning message in sshbackend. New in v0.6.08b (2010/03/11) ---------------------------- Fix bug where encrypted backup without --gpg-options crashes. This was a followup issue to bug 490619 released in 0.6.07. This is attempt #2 -- not sure what happened to the patch, but it did not show up in 0.6-series like it should have. New in v0.6.08a (2010/03/11) ---------------------------- Fix bug where encrypted backup without --gpg-options crashes. This was a followup issue to bug 490619 released in 0.6.07. New in v0.6.08 (2010/03/07) --------------------------- Bugs closed in this release: 519110 Need accurate man page info on use of scp/sftp usage. 532051 rdiffdir attempts to reference undefined variables with some command arguments 529869 TypeError: unsupported operand type(s) for -: 'NoneType' and 'int' 530910 TypeError: unsupported operand type(s) for +: 'NoneType' and 'str' New in v0.6.07 (2010/02/28) --------------------------- Bugs closed in this release: 459511 --tempdir option doesn't override TMPDIR 467391 [PATCH] WebDAV backend doesn't work 487686 re-add scp backend and make available via command line option 490619 Use optparse not getopt 497243 0.6.06, archive dir: cache desynchronization caused by remove* 501093 SSHBackend doesn't handle spaces in path 505739 "sslerror: The read operation timed out" with S3 520470 Don't Warn when there's old backup to delete 522544 OSError: [Errno 40] Too many levels of symbolic links 388673 Allow renaming paths as they are restored New in v0.6.06 (2009/10/29) --------------------------- Merged in lp:~mterry/duplicity/list-old-chains List/keep old signature chains Applied patches from Kasper Brand that fixed device file handling. http://lists.gnu.org/archive/html/duplicity-talk/2009-09/msg00001.html Merged in lp:~l2g/duplicity/flag-transl-comments which cleared up how translation comments should be passed to the translators cleanly now. Applied 422477; [PATCH] IMAP Backend Error in delete() Merged in lp:~mterry/duplicity/iterate-warnings Add machine codes to various warnings when iterating over source files Fix problems with unittests under Jaunty. It appears that redirection in os.system() has changed for the worse, so a workaround for now. Fix problem in restart where there were no manifest entries and no remote volumes stored. We clean out the partial and restart. Fixed 435975 gpg asks for password in 0.6.05, but not in 0.5.18 New in v0.6.05 (2009/08/28) --------------------------- Merged in lp:~l2g/duplicity/test-compat from Larry Gilbert which made the testing compatible across more systems. Also fixed the remaining collectionstest bug which was trying to test with no cache present. Bugs fixed this release: 407968 GIO backend can't restore 408059 Failure due to _logger.log failure for content with special characters: TypeError decoding Unicode not supported 409593 deja-dup (or duplicity) deletes all signatures 412667 "duplicity remove-older-than" asks for passphrase even though not required 418170 [PATCH] file names longer then 512 symbols are not supported New in v0.6.04 (2009/08/01) --------------------------- One major and one minor change. The "No such file or directory" error is bad enough that this should be released quickly. For those of you using encryption, this is not a problem, but for those of you that do not use encryption (--no-encryption), then this will manifest itself if the local cache gets out of sync with the remote store. Bugs fixed this release: 405734 duplicity fails to restore files that contain a newline character 403790 Backup error: No such file or directory New in v0.6.03 (2009/07/29) --------------------------- Lots of small changes and some bug fixes. * Restart error handling has been smoothed out a great deal and it "does what is right" in order to keep going. * Backends are now optional, if they fail an Info message is put out to notify of the failure and why. * There was more work on translations and internationalization. Thanks to everyone! Bugs fixed this release: 377528 --file-to-restore doesn't work with trailing slash 394757 Backend imports should be made optional 398230 Deja-dup backup fails with message: "Unable to locate last file" 401303 0.6.2 manpage inconsistent wrt. archive-dir/name 405646 Small i18n error 405975 duplicity.gpg.gpg_failed() breaks and spews on GnuPG error 402794 duplicity public-key-only incompatible with gnupg 2.0.11 New in v0.6.02 (2009/07/07) --------------------------- Duplicity will now remove any spurious files left in the cache from a previous run. This will keep the metadata cache in sync with the remote storage metadata. Bugs fixed this release: 394629 Hang on first collection-status 379386 Fix 'list-current-files' with missing archive dir 395826 "No such file or directory" when backing up second time 394627 User-friendly archive dir print 388699 Manifest mismatch error New in v0.6.01 (2009/07/01) --------------------------- Fixed issues in Checkpoint/Restart: * The --name backupname" option was added to allow the user to separate one archive from another. If not specified, the default is an MD5 hash of the target URL, which should suffice for most uses. * The archive_dir (cache) is now stored in a standard location, defaulting to ~/.cache/duplicity. See http://standards.freedesktop.org/basedir-spec/latest/ * The interaction between the --archive-dir option and the --name option allows for four possible results for the location of the archive dir. - neither specified (default) ~/.cache/duplicity/hash-of-url - --archive-dir=~/arch, no --name ~/arch/hash-of-url - no --archive-dir, --name=foo ~/.cache/duplicity/foo - --archive-dir=~/arch, --name=foo ~/arch/foo * duplicity will now copy needed metadata from the remote store to the local cache as needed. This means that the first use after upgraded from 0.5.x will have the metadata copied to the local archive dir in order to sync both. * cleanup will now work correctly with the archive dir and separates the local from the remote files. Bugs fixed this release: * 388034 Unable to backup * 378940 python2-6 issue / UTF-8 charset / Ubuntu 9.04 * 379386 Fix list-current-files w/ missing archive dir * 387102 Asynchronous upload not working properly * 387218 Make scp/ssh into sftp-only backend * 388992 List of Orphaned Files Growing * 392905 NoneType object has no attribute 'startswith' * 393372 Error creating directory * 383412 Add InfoCodes for upload events * 383419 Add gio backend New in v0.6.00 (2009/06/08) --------------------------- Checkpoint/Restart capability added. Checkpoint is done at every volume written and Restart is done at start of the next volume in the set. Changes to normal operations include a permanent duplicity archive-dir at ~/.duplicity to save state. To accomplish this, the signature and archive files in the archive-dir now have three states: 1) temporary until the first volume has been written, 2) partial until the final volume has been written and sent to remote storage, 3) permanent with the same name as always. Assumptions are made that if a restart is needed, then all arguments are the same as before and that no files have been removed from the file system between runs. From now on, the --archive-dir option can be used to change the location of the archive dir, but you are responsible for moving the files if you change it. Other fixes: Unicode filenames in log messages are now OK. Fixed problem where Cygwin was returning -1 for the hard max open file limit.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
Changes from previous: 2011-10-26 Hatuka*nezumi - IKEDA Soji <[email protected]> * Release 1.012.4. * Chg: encode_mimewords(): 'B' was advantageous over 'Q' by 4/3 byte on average... * Updated address of FSF. 2011-06-05 Hatuka*nezumi - IKEDA Soji <[email protected]> * Release 1.012.3. * Fix: encode_mimewords(): inproper handling of Encoding => 'S'. * Imp: decode_mimewords(): Broken "Q" encoding also warned: "=" not leading two hexdigits (raw " " and "\t" are allowed). * Imp: encode_mimewords(): negative MaxLineLen allows unlimited length of line. * Encode::MIME::EncWords: Rewritten. 0.03. - Any newlines not forming folding white space are preserved. cf. CPAN RT #68582 for standard encodings. - Error handling. * Doc: typos etc. 2011-06-01 Hatuka*nezumi - IKEDA Soji <[email protected]> * Release 1.012.2. * Chg: encode_mimewords(): By 'A' or 'S' encodings, 'Q' will be used more often: When number of bytes to be encoded exceeds 6th of entire bytes, words may be encoded by 'B'. In other words, ``S encoding'' is to choose shorter one of 'B' or 'Q' according to length of maximally-encoded result. * Fix: encode_mimewords(): Pure ASCII words containing unsafe sequence ignored Encoding option; encoded by header_encoding() of its charset. * Updated Encode::MIME::EncWords. * Added test #3 & #4. Added UTF-8 cases to #2. 2011-05-29 Hatuka*nezumi - IKEDA Soji <[email protected]> * Release 1.012.1. * Unicode/multibyte support on Perl 5.7.3 (experimental). * New: Encode::MIME::EncWords [alpha release] - Encode module for "MIME-EncWords", "MIME-EncWords-B", "MIME-EncWords-Q" and "MIME-EncWords-ISO_2022_JP". * Requires MIME::Charset >= 1.008.2.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
== MIME::Types 1.17.2 / 2011-10-25 * Bug Fixes: * Fixed an issue with Ruby 1.9 and file encoding. == MIME::Types 1.17.1 / 2011-10-23 * Minor Enhancements: * Implemented modern 'hoe' semantics. * Switched to minitest instead of test/unit. * Converted documentation from .txt to .rdoc. * Removed setup.rb. (Issue #3: mime-types/ruby-mime-types#3). * Should no longer complain about missing RubyGems keys (Issue #2: mime-types/ruby-mime-types#2). * Added .mp4 and .mpg4 as recognized extensions for {application,audio,video}/mp4 per RFC4337. (Issue #1: mime-types/ruby-mime-types#1). * Added audio/x-aac and .aac per RubyForge issue #28054 (http://rubyforge.org/tracker/index.php?func=detail&aid=28054&group_id=293&atid=1194). * Made it much easier to update MIME types from this point forward. * Updated MIME types from IANA.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
=== 1.2 / 2011-11-22 * Minor enhancement * Now thread safe. Issue #2 by chrisochs.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
== 1.1.3 - 2012/01/29 * [GitHub #8] fix test broken by libpng version. (Patch by Bohuslav Kabrda.) * Used RbConfig instead of Config. == 1.1.2 - 2011/07/04 * [GitHub #2] fix test broken. (Reported by Mamoru Tasaka.) * [GitHub #4] update project descripton. (Patch by Antonio Terceiro.) * [GitHub #4] use setup.rb instead of extconf.rb. (Patch by Antonio Terceiro.) * [GitHub #3] add Copyright notice to README. (Suggested by Antonio Terceiro.) * [GitHub #7] supported non i386 and amd64 architectures. (Reported by Antonio Terceiro.)
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
=== 4.1.2 / 2012-02-17 * Improvement to `ask_editor` to be more portable across *nix variants. (thanks to Federico Galassi) === 4.1.1 / 2012-02-16 * Update `ask_editor` to work with any *nix editor - emacs, vim, etc. (thanks to Federico Galassi) === 4.1.0 / 2012-02-12 * Update highline dependency. * Make optional arguments true when present (issue #2). === 4.0.7 / 2012-01-23 * Improved support for JRuby and Windows (and any other platforms that don't support Kernel.fork). * Fixed bug #33 - support `--help` after commands. * Reorganized help output to display synopsis before description (issue #12).
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
Changes: 1.951 2012-03-13T10:17:09Z * Remove Tie::StdHash from our dependencies list, its part of core and it creates problems with some CPAN clients 1.950 2012-03-12T13:54:10Z * DEPRECATED: the encoding attribute to new() - we will not support automatic decoding after 2.000, so please test your code with encoding => undef now. * Add pipeline support: Aaron Crane arc@github++! * Cache AUTOLOAD calls: improves performance a bit, fixes #2 * Fix: apply reconnect logic to KEYS and INFO * Fix: forbid PING and SHUTDOWN in SUBSCRIBE mode * Updated docs covering pipelining and multi/exec * Updated docs to point users to Github for code and issues
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
(while here, fixes message catalogue installation with gmake) 1.0.6 Assign NULL to freed strings Updated Japanese translation Remove debug message Kill GTK widget oversize warning Apply recommendation from Issue #6 Apply patch from Issue #7, codecs not reset to NULL Only do the restart on decoding error if the position is 0 (window size issue) Allow one decoding error restart Fix error when shifting protocol from mms to mmsh Updated Turkish translation 1.0.6b1 Track gtk2 and gtk3 in gmtk.pc file Enhance subtitle visibility tracking Handle the keyboard masks more correctly Only allocate a size for the child window if the parent widget is realized Fix volume tracking on default device, even when the device changes Switch "PulseAudio" from a softvol to a real PulseAudio control (still can be forced to softvol if needed) This allows for better volume control that is synced with the system volume and the default output device This should be the default setting on machines with PulseAudio Add -zoom to mplayer when vo is x11 Updated German translation Change po file install location Do PKG_CHECK for GTK3 when --enable-gtk=yes is specified Use the localedir variable in the Makefile may fix Wolfgang's issue Add gmlib to the list of referenced libaries Issue #3 Add pulse cflags and libs to libgmtk Issue #2 Detect if libm should be used and use if needed Issue #1 Add files to SVN as recommended by autoreconf -fiv
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
09/09/12 - Allow use of editline library in Mathomatic, because somehow use of GPL libraries in LGPL code is not allowed, and GNU readline is GPL. I am so confused about this Debian bug#687063: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687063 Based on the bug report's information sources, it appears he is saying the truth about this license issue, so I will have to upload new versions of Mathomatic with editline instead of readline to Debian. The only noticeable difference should be it doesn't save the history between Mathomatic sessions. I will comply with all that request it, though most distributions do not include editline, which has no major licensing restrictions. Readline is still perfectly usable and good as before, you just have to link it in yourself. 09/10/12 - Going to have to make a new release already, 2 days after the last one, so I can upload this readline licensing fix to Debian by linking with editline. There is no reason for anyone to upgrade to version 16.0.4, unless you wish to link with editline instead of readline. The proper code has been added. All you have to do is have the editline libraries loaded on your system, and run "make EDITLINE=1" to compile and link Mathomatic with editline. Mathomatic version 16.0.4 released Monday 09/10/12. CHANGES MADE TO MATHOMATIC 16.0.2 TO BRING IT UP TO THE NEXT VERSION: New command "set load" loads the current set options startup file again, displaying the startup file as it reads it in. If the file doesn't exist, or something is wrong, then an error message is displayed and the set command returns with failure. Accidently putting "load" in the startup file is now handled correctly. 08/09/12 - Allow "matho-primes all" and the command "list primes all" in Mathomatic to continually output consecutive prime numbers. 08/12/12 - Fixed any rman errors in the makefile so they won't be ignored. 08/17/12 - rmath and matho no longer set the debug_level or modulus_mode, so they can be set by the startup options file. 08/19/12 - Allow the repeat prefix on the approximate command, making it approximate and simplify as much as the calculate command does. Hopefully someday it will just give a temporary result, too. Numerical input into the symbolic math library now uses "repeat approximate" instead of just "approximate" to approximate the user's input, so the result is the same as the Mathomatic application's result. Disallow the same warnings to be repeatedly displayed, if the current warning is the same as the previous warning. 08/20/12 - Allow directory names as read command arguments, instructing the read command to change the current directory to the specified directory. Without any arguments, the read command now does an "ls" command in Unix/Linux, and "dir" under MS-Windows, listing the current directory contents. Running Mathomatic with a directory name argument now conveniently changes directory to that directory, then gives you the main prompt. 08/28/12 - Made "integer" type variables much more useful. For example, the following now happens generally: 1-> i^(4*integer) #1: i^(4*integer) 1-> simplify #1: 1 1-> i^((4*integer) + 1) #2: i^((4*integer) + 1) 2-> simplify #2: i 2-> i^((4*integer) + 2) #3: i^((4*integer) + 2) 3-> simplify #3: -1 3-> i^((4*integer) + 3) #4: i^((4*integer) + 3) 4-> simplify #4: -1*i 08/29/12 - Displays "Calculating..." whenever autocalc is used now. 08/30/12 - Added ability to set the normal text color. Still defaults to no color. Use "set color 0" to set the normal text color to green, as it has been for many years in the past. 08/31/12 - Removed the "set preserve_surds" option, since the approximate and calculate commands all take care of undoing that. The code remains, however "set preserve_surds" is no longer advertised. I have never used it. Surds are preserved, for accuracy's sake, by default. 09/05/12 - "set" as a null set option works now, so no one will have any trouble setting-up the set options startup file. Mathomatic version 16.0.3 released Saturday 09/08/12.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
Upstream changes: 0.2.1 2012-12-02 17:44:34 Europe/Oslo Updated all traits to use Moose::Util::meta_attribute_alias() to specify trait aliases. Requires at least Moose 0.89. Fixed bug with duplicate class names being returned by Data::Visitor::Callback when traversing a Moose type constraint on perl 5.17.6. Reported by Andreas J. König. (RT #81519) 0.1.1 2011-10-23 14:56:18 Europe/Oslo Fixed bug with has_xpath_value_map throwing exception if xpath_value query returns empty result set. (RT #71815) Reported by Jeffery M. Thompson. 0.1.0 2011-09-27 14:46:03 Europe/Oslo Added multiple helper/sugar functions. (GitHub #2) Fixed problem with XML::Rabbit::Role::Node->dump_xml() throwing exception because of wide characters in print. 0.0.4 2011-03-22 16:16:02 Europe/Oslo Fixed missing trait imports in XML::Rabbit::Role::Node.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
== 1.2.1 / 2013-02-09 * Bugs Fixed: * As seen in rspec/rspec-expectations#200, the release of Diff::LCS 1.2 introduced an unnecessary public API change to Diff::LCS::Hunk (see the change at rspec/rspec-expectations@3d6fc82c for details). The new method name (and behaviour) is more correct, but I should not have renamed the function or should have at least provided an alias. This release restores Diff::LCS::Hunk#unshift as an alias to #merge. Note that the old #unshift behaviour was incorrect and will not be restored. == 1.2.0 / 2013-01-21 * Minor Enhancements: * Added special case handling for Diff::LCS.patch so that it handles patches that are empty or contain no changes. * Added two new methods (#patch\_me and #unpatch\_me) to the includable module. * Bugs Fixed: * Fixed issue #1 patch direction detection. halostatue/diff-lcs#1 * Resolved issue #2 by handling string[string.size, 1] properly (it returns "" not nil). halostatue/diff-lcs#2 * Michael Granger (ged) fixed an implementation error in Diff::LCS::Change and added specs in pull request #8. Thanks! halostatue/diff-lcs#8 * Made the code auto-testable. * Vít Ondruch (voxik) provided the latest version of the GPL2 license file in pull request #10. Thanks! halostatue/diff-lcs#10 * Fixed a documentation issue with the includable versions of #patch! and #unpatch! where they implied that they would replace the original value. Given that Diff::LCS.patch always returns a copy, the documentation was incorrect and has been corrected. To provide the behaviour that was originally documented, two new methods were added to provide this behaviour. Found by scooter-dangle in issue #12. Thanks! halostatue/diff-lcs#12 * Code Style Changes: * Removed trailing spaces. * Calling class methods using '.' instead of '::'. * Vít Ondruch (voxik) removed unnecessary shebangs in pull request #9. Thanks! halostatue/diff-lcs#9 * Kenichi Kamiya (kachick) removed some warnings of an unused variable in lucky pull request #13. halostatue/diff-lcs#13 Thanks! * Embarked on a major refactoring to make the files a little more manageable and understand the code on a deeper level. * Adding to http://travis-ci.org.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
- bug #3828 MariaDB reported as MySQL - bug #3854 Incorrect header for Safari 6.0 - bug #3705 Attempt to open trigger for edit gives NULL - Use HTML5 DOCTYPE - [security] Self-XSS on GIS visualisation page, reported by Janek Vind - bug #3800 Incorrect keyhandler behaviour #2
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
Jason Bacon. Should make gnuradio find swig2. Version 2.0.10 (27 May 2013) ============================ 2013-05-25: wsfulton [Python] Fix Python 3 inconsistency when negative numbers are passed where a parameter expects an unsigned C type. An OverFlow error is now consistently thrown instead of a TypeError. 2013-05-25: Artem Serebriyskiy SVN Patch ticket #338 - fixes to %attribute macros for template usage with %arg. 2013-05-19: wsfulton Fix ccache-swig internal error bug due to premature file cleanup. Fixes SF bug 1319 which shows up as a failure in the ccache tests on Debian 64 bit Wheezy, possibly because ENABLE_ZLIB is defined. This is a corner case which will be hit when the maximum number of files in the cache is set to be quite low (-F option), resulting in a cache miss. 2013-05-09: kwwette [Octave] Fix bugs in Octave module loading: - fix a memory leak in setting of global variables - install functions only once, to speed up module loads 2013-04-28: gjanssens [Guile] Updates in guile module: - Add support for guile 2.0 - Drop support for guile 1.6 - Drop support for generating wrappers using guile's gh interface. All generated wrappers will use the scm interface from now on. - Deprecate -gh and -scm options. They are no longer needed. A warning will be issued when these options are still used. - Fix all tests and examples to have a successful travis test 2013-04-18: wsfulton Apply Patch #36 from Jesus Lopez to add support for $descriptor() special variable macro expansion in fragments. For example: %fragment("nameDescriptor", "header") %{ static const char *nameDescriptor = "$descriptor(Name)"; %} which will generate into the wrapper if the fragment is used: static const char *nameDescriptor = "SWIGTYPE_Name"; 2013-04-18: wsfulton Fix SF Bug #428 - Syntax error when preprocessor macros are defined inside of enum lists, such as: typedef enum { eZero = 0 #define ONE 1 } EFoo; The macros are silently ignored. 2013-04-17: wsfulton [C#] Pull patch #34 from BrantKyser to fix smart pointers in conjuction with directors. 2013-04-15: kwwette [Octave] Fix bugs in output of cleanup code. - Cleanup code is now written also after the "fail:" label, so it will be called if a SWIG_exception is raised by the wrapping function, consistent with other modules. - Octave module now also recognises the "$cleanup" special variable, if needed. 2013-04-08: kwwette Add -MP option to SWIG for generating phony targets for all dependencies. - Prevents make from complaining if header files have been deleted before the dependency file has been updated. - Modelled on similar option in GCC. 2013-04-09: olly [PHP] Add missing directorin typemap for char* and char[] which fixes director_string testcase failure. 2013-04-05: wsfulton [Ruby] SF Bug #1292 - Runtime fixes for Proc changes in ruby-1.9 when using STL wrappers that override the default predicate, such as: %template(Map) std::map<swig::LANGUAGE_OBJ, swig::LANGUAGE_OBJ, swig::BinaryPredicate<> >; 2013-04-05: wsfulton [Ruby] SF Bug #1159 - Correctly check rb_respond_to call return values to fix some further 1.9 problems with functors and use of Complex wrappers. 2013-04-02: wsfulton [Ruby] Runtime fixes for std::complex wrappers for ruby-1.9 - new native Ruby complex numbers are used. 2013-03-30: wsfulton [Ruby] Fix seg fault when using STL containers of generic Ruby types, GC_VALUE or LANGUAGE_OBJECT, on exit of the Ruby interpreter. More frequently observed in ruby-1.9. 2013-03-29: wsfulton [Ruby] Fix delete_if (reject!) for the STL container wrappers which previously would sometimes seg fault or not work. 2013-03-25: wsfulton [Python] Fix some undefined behaviour deleting slices in the STL containers. 2013-03-19: wsfulton [C#, Java, D] Fix seg fault in SWIG using directors when class and virtual method names are the same except being in different namespaces when the %nspace feature is not being used. 2013-02-19: kwwette Fix bug in SWIG's handling of qualified (e.g. const) variables of array type. Given the typedef a(7).q(volatile).double myarray // typedef volatile double[7] myarray; the type q(const).myarray // const myarray becomes a(7).q(const volatile).double // const volatile double[7] Previously, SwigType_typedef_resolve() produces the type q(const).a(7).q(volatile).double // non-sensical type which would never match %typemap declarations, whose types were parsed correctly. Add typemap_array_qualifiers.i to the test suite which checks for the correct behaviour. 2013-02-18: wsfulton Deprecate typedef names used as constructor and destructor names in %extend. The real class/struct name should be used. typedef struct tagEStruct { int ivar; } EStruct; %extend tagEStruct { EStruct() // illegal name, should be tagEStruct() { EStruct *s = new EStruct(); s->ivar = ivar0; return s; } ~EStruct() // illegal name, should be ~tagEStruct() { delete $self; } } For now these trigger a warning: extend_constructor_destructor.i:107: Warning 522: Use of an illegal constructor name 'EStruct' in %extend is deprecated, the constructor name should be 'tagEStruct'. extend_constructor_destructor.i:111: Warning 523: Use of an illegal destructor name 'EStruct' in %extend is deprecated, the destructor name should be 'tagEStruct'. These %extend destructor and constructor names were valid up to swig-2.0.4, however swig-2.0.5 ignored them altogether for C code as reported in SF bug #1306. The old behaviour of using them has been restored for now, but is officially deprecated. This does not apply to anonymously defined typedef classes/structs such as: typedef struct {...} X; 2013-02-17: kwwette When generating functions provided by %extend, use "(void)" for no-argument functions instead of "()". This prevents warnings when compiling with "gcc -Wstrict-prototypes". 2013-02-17: kwwette [Octave] Minor fix to autodoc generation: get the right type for functions returning structs. 2013-02-15: wsfulton Deprecate typedef names used in %extend that are not the real class/struct name. For example: typedef struct StructBName { int myint; } StructB; %extend StructB { void method() {} } will now trigger a warning: swig_extend.i:19: Warning 326: Deprecated %extend name used - the struct name StructBName should be used instead of the typedef name StructB. This is only partially working anyway (the %extend only worked if placed after the class definition). 2013-02-09: wsfulton [CFFI] Apply patch #22 - Fix missing package before &body 2013-01-29: wsfulton [Java] Ensure 'javapackage' typemap is used as it stopped working from version 2.0.5. 2013-01-28: wsfulton [Python] Apply patch SF #334 - Fix default value conversions "TRUE"->True, "FALSE"->False. 2013-01-28: wsfulton [Java] Apply patch SF #335 - Truly ignore constructors in directors with %ignore. 2013-01-18: Brant Kyser [Java] Patch #15 - Allow the use of the nspace feature without the -package commandline option. This works as long and the new jniclasspackage pragma is used to place the JNI intermediate class into a package and the nspace feature is used to place all exposed types into a package. 2013-01-15: wsfulton Fix Visual Studio examples to work when SWIG is unzipped into a directory containing spaces. 2013-01-15: wsfulton [C#] Fix cstype typemap lookup for member variables so that a fully qualified variable name matches. For example: %typemap(cstype) bool MVar::mvar "MyBool" struct MVar { bool mvar; }; 2013-01-11: Brant Kyser [Java, C#, D] SF Bug #1299 - Fix generated names for when %nspace is used on classes with the same name in two different namespaces. 2013-01-11: Vladimir Kalinin [C#] Add support for csdirectorin 'pre', 'post' and 'terminator' attributes. 2013-01-08: olly [PHP] Fix to work with a ZTS build of PHP (broken in 2.0.7). 2013-01-07: olly Fix bashism in configure, introduced in 2.0.9. 2013-01-06: wsfulton Pull patch #4 from ptomulik to fix SF Bug #1296 - Fix incorrect warning for virtual destructors in templates, such as: Warning 521: Illegal destructor name B< A >::~B(). Ignored. 2013-01-05: wsfulton [Python] Pull patch #3 from ptomulik to fix SF Bug #1295 - standard exceptions as classes using the SWIG_STD_EXCEPTIONS_AS_CLASSES macro. 2013-01-04: wsfulton [Java] Pull patch #2 from BrantKyser to fix SF Bug #1283 - fix smart pointers in conjuction with directors. 2013-01-03: wsfulton [Java] Pull patch #1 from BrantKyser to fix SF Bug #1278 - fix directors and nspace feature when multilevel namespaces are used. Version 2.0.9 (16 December 2012) ================================ 2012-12-16: wsfulton Fix garbage line number / empty file name reporting for some missing '}' or ')' error messages. 2012-12-15: kkaempf [Ruby] Apply patch 3530444, Class#methods and Class#constants returns array of symbols in Ruby 1.9+ 2012-12-14: kkaempf [Ruby] Apply patch 3530439 and finally replace all occurrences of the STR2CSTR() macro with StringValuePtr(). STR2CSTR was deprecated since years and got removed in Ruby 1.9 2012-12-14: kkaempf [Ruby] Applied patches #3530442 and 3530443 to adapt compile and runtime include paths to match Ruby 1.9+ 2012-12-14: wsfulton [CFFI] Fix #3161614 - Some string constants are incorrect 2012-12-13: wsfulton [CFFI] Fix #3529690 - Fix incorrect constant names. 2012-12-12: drjoe [R] add fix to finalizer that was missed earlier 2012-12-11: wsfulton [Python] Apply patch #3590522 - fully qualified package paths for Python 3 even if a module is in the same package. 2012-12-08: wsfulton [Python] Bug #3563647 - PyInt_FromSize_t unavailable prior to Python 2.5 for unsigned int types. 2012-12-08: wsfulton [Perl] Fix bug #3571361 - C++ comment in C wrappers. 2012-12-07: wsfulton [C#] Apply patch #3571029 which adds missing director support for const unsigned long long &. 2012-11-28: kwwette [Octave] Simplified module loading: now just the syntax $ example; is accepted, which loads functions globally but constants and variables relative to the current scope. This make module loading behaviour reliably consistent, and reduces problems when loading modules which depend on other modules which may not have been previously loaded. 2012-11-27: wsfulton [cffi] Fix junk output when wrapping single character literal constants. 2012-11-17: wsfulton [Tcl, Modula3] Add missing support for -outdir. 2012-11-17: wsfulton Fix segfaults when using filename paths greater than 1024 characters in length. 2012-11-14: wsfulton [ccache-swig] Apply patch #3586392 from Frederik Deweerdt to fix some error cases - incorrectly using memory after it has been deleted. 2012-11-09: vzeitlin [Python] Fix overflow when passing values greater than LONG_MAX from Python 3 for parameters with unsigned long C type. 2012-11-09: wsfulton Fix some feature matching issues for implicit destructors and implicit constructors and implicit copy constructors added with %copyctor. Previously a feature for these had to be fully qualified in order to match. Now the following will also match: %feature("xyz") ~XXX(); struct XXX {}; 2012-11-09: wsfulton Further consistency in named output typemap lookups for implicit constructors and destructors and implicit copy constructors added with %copyctor. Previously only the fully qualified name was being used, now the unqualified name will also be used. For example, previously: example.i:38: Searching for a suitable 'out' typemap for: void Space::More::~More Looking for: void Space::More::~More Looking for: void Now the unqualified name is also used: example.i:38: Searching for a suitable 'out' typemap for: void Space::More::~More Looking for: void Space::More::~More Looking for: void ~More Looking for: void 2012-11-02: wsfulton Fix some subtle named output typemap lookup misses, the fully qualified name was not always being used for variables, for example: struct Glob { int MyVar; }; Previously the search rules (as shown by -debug-tmsearch) for the getter wrapper were: example.i:44: Searching for a suitable 'out' typemap for: int MyVar Looking for: int MyVar Looking for: int Now the scope is named correctly: example.i:44: Searching for a suitable 'out' typemap for: int Glob::MyVar Looking for: int Glob::MyVar Looking for: int MyVar Looking for: int 2012-10-26: wsfulton Fix director typemap searching so that a typemap specified with a name will be correctly matched. Previously the name was ignored during the typemap search. Applies to the following list of typemaps: directorout, csdirectorout, cstype, imtype, ctype, ddirectorout, dtype, gotype, jtype, jni, javadirectorout. 2012-10-11: wsfulton Most of the special variables available for use in %exception are now also available for expansion in %extend blocks. These are: $name $symname $overname $decl $fulldecl $parentname $parentsymname, see docs on "Class extension" in SWIGPlus.html. Patch based on submission from Kris Thielemans. 2012-10-10: wsfulton Additional new special variables in %exception are expanded as follows: $parentname - The parent class name (if any) for a method. $parentsymname - The target language parent class name (if any) for a method. 2012-10-08: iant [Go] Generating Go code now requires using the -intgosize option to indicate the size of the 'int' type in Go. This is because the size of the type is changing from Go 1.0 to Go 1.1 for x86_64. 2012-09-14: wsfulton Add new warning if the empty template instantiation is used as a base class, for example: template <typename T> class Base {}; %template() Base<int>; class Derived : public Base<int> {}; gives the following warning instead of silently ignoring the base: cpp_inherit.i:52: Warning 401: Base class 'Base< int >' has no name as it is an empty template instantiated with '%template()'. Ignored. cpp_inherit.i:51: Warning 401: The %template directive must be written before 'Base< int >' is used as a base class and be declared with a name. 2012-09-11: wsfulton [Java] Fix #3535304 - Direct use of a weak global reference in directors sometimes causing seg faults especially on Android. 2012-09-06: wsfulton [Java] Fix (char *STRING, size_t LENGTH) typemaps to accept NULL string. 2012-08-26: drjoe [R] make ExternalReference slot ref to contain reference 2012-08-26: drjoe [R] fix Examples/Makefile to use C in $(CC) rather than $(CXX)
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
* Update MASTER_SITES. * Hardcode PLOTICUS_PREFABS environment values. Changelog: Ploticus 2.42 - May 2013 Maintenance release with these bug fixes: various code updates to reduce warnings arising from newer gcc versions / lint in strict mode. chron prefab - fixes to the error bars; data point symbols heatmap prefab - wasn't obeying the legend=no parameter... fixed. proc boxplot - incorrect error message on number of statfields supplied, and likely other erratic behavior, when doing median-based bars plus a mean symbol. the 'legendlabel' attribute was only accepting first whitespace-delimited token... should accept entire line. Affected these procs: bars, curvefit, lineplot, scatterplot, and vector. Version 2.41 (May 2009) - new features: New proc: proc pvalue for computing pvalues associated with t-test. proc scatterplot - new attribute colorfield allows you to control data point color directly from a data field (not involving the legend-driven technique). proc areadef - new attributes clickmapadjust for tweaking the overall position of grid clickmap, and catbinsadjust useful in setting up a plotting area with categories that are slid -0.5. proc print - new variable that is set called FOUNDROW, which lets you determine which data row contains a given value, then pass the row number to the $datarow() function proc catlines - column bars category names having embedded whitespace can now be used for positioning (use underscores in the location spec) prefabs - new parameters xgridskip, ygridskip, xgridblocks, ygridblocks, firststub, laststub 2.41 bug fixes Thanks to all those who reported and/or supplied fixes for these bugs... C coding issue - string pointer comparisons, was ok on gcc but failed on sun C compiler and others clickmap - double url encoding bug tokncpy() fix affecting win32 builds proc processdata action: breaks not setting NRECORDS to 0 on eof proc processdata - result field names are set later, allowing current field names to be used in select statements on clickmap tags, alt= attribute added so that output passes xml validation numgroup() function - contributed bugfix installed datetime stubs - seconds were incorrect clickmap urlencoding - spaces are now urlencoded to %20 (previously was +) direct pixel data points are now influenced by -scale proc catlines able to function with just one subcat (use to require at least two) instability related to field name headers, getfname() memory leak in grgd.c, Gptlist date stubs dislaying garbage when given unrecognized date format string lineplot XFINAL was incorrect Version 2.40 (Jan 2008) New features: A revision pass was done affecting all script and attribute parsing, with the goal of eliminating attribute length restrictions where possible, and reducing string copy operations. proc catlines proc tree proc getdata ... data sets using the bar character (|) as field delimiter are now supported. Also, there's now delim: auto which tries to automatically determine data field delimitation. proc processdata ... new actions: summary, summaryplus, raccum ... new attributes binsize, binmod proc boxplot (formerly proc rangebar) ... functionality change.. it now produces a set of boxplots in a similar way to how other procs (such as proc bars) operate. Any existing scripts using proc rangebar will require attention. new pl(1) command line options -pixsize (to set exact size of result image in pixels), and -cputime (to set cputime resource limit). As usual these have equivalent settings in proc page and/or proc settings axis autorange now supports the following: nearest=Nminute nearest=second nearest=Nsecond proc image (formerly called proc import)... gifs can be imported. Images can now be incorporated into SVG plot results. Clickmap support. symboldetails ... imgfile, imgwidth, imgheight color ... color specifications using notation such as xFEDCBA now supported Slanted axis stubs are now supported. See proc axis stubvert parameter A number of other new attributes that are specialized or of minor interest 2.40 Bug fixes bug related to legend-driven bar graphing direct pixel data points inherit current line dashing .. symboldetails needs to set linetype to plain segfault occuring after error 12040 "DISPLAY=" ? svg compile and swf segfault bugs proc getdata - recent fix related to #field names and #data fields needs to take filters into account proc categories - when cats specified literally, trailing whitespace is taken as part of category proc image segfaults with -x11 proc lineplot - gapmissing autozero not working right segfault when -csmap is used with long urls proc processdata MIN, MAX - not affected by 'resultformat' but should be First x stub is a little higher than the others gd color bug when degenerate data row encountered [color change bug - lineplot gapmissing and fill options] prefab chunk_title - align= was giving backward results proc bars - segments - code bug demonstrated by gallery/timeline2.htm proc bars - instability related to color change optimization (wild draw location) prefab cumufrac - no curve produced for certain input data (see msg 1974) clickmap - the clickmap entries for plot elements sitting on top of a clickmap grid are written too late in the map and mouse doesn't respond. For gif/png/jpg imagemaps, need to write map entires in this order: 1) plot element regions 2) xy grid regions 3) single-dimention grid regions. (svg uses the opposite order) scripts having embedded CSV data (w rows > 255) can break script processor causing instability. proc annotate instability on filled rectangle draw caused by unitialized bd* vars proc curvefit - xfield was required, but doesn't need to be legend - repeated use of legends eventually gives "Sorry, too much legend content" msg prefab overlays - each run needs to output a code into the dumpfile that tells pcode to do a graphics init. Otherwise, run 2 inherits current color (other settings?) left behind by run1 proc axis - stubround - 1st stub seems to be often omitted even when it is a round value (snps/distplot) URL encoding shouldn't encode '.' or other normal punctuation chars.. floating bars weirdness instability when trying to #set a var to length > 334 chars instability when supplying a long perl script with #proc getdata commandmr ticus 2.33 (June 2006) New features direct pixel data point symbols for gd and x11, to provide sharp non-distorted data points. In the example below the first two rows use the new direct pixel data points, while the 3rd row shows the vector-based data points that have always been available. proc venndisk - some new attributes to support "vennmag" plots (a series of disks resting on X axis to compare magnitudes). Here's an example: clickmaps - new clickmapurl syntax to allow deployment in a new window, etc. Syntax is like this: clickmapurl: [target=new]http://abc.com/cgi-bin/... SVG - proc settings / config files - svg_linkparms attribute discontinued. Use the new clickmapurl syntax (see above) proc axis - stubround attribute - solves the old problem of getting stubs at round number locations when plot area minima is not at a round location. proc lineplot - gapmissing: autozero proc bars - new attributes for better control of bar labels: labelmustfit, labelmaxlen, labelselect pl command line -ping option proc scatterplot - cluster attribute - default will now be 'no' prefab scat - new parm ptstyle= filled or outline ..... and changed to use the new direct pixel data point symbols. 2.33 Bug fixes clickmap - url encoding is now performed on variable contents and axis values that are substituted into clickmapurls proc categories - uniqueness check wasn't applied when categories listed literally. Useful in apps where the list is generated by another program or whatever. improved handling of very long command line args - each arg is silently truncated to 255 chars. var=value parameters cannot begin with a dash as may have been previously tolerated. var=value parameters are now intercepted before entering the arg name big decision structure. $dategroup() function didn't know about datetime separator characters other than '.' issue where the "circuit breaker tripped" message was appearing when autorange is used but no stubs / no tics were being generated ploticus api code bug - prefabs were not usable via api made adjustments to improve rounding error when axis begins in negative space and reaches zero, zero was shown a very tiny scientific notation number proc processdata - percents - resulting data values were written as enclosed in quotes which made them unplottable. fixed many compile warnings when building w/ gcc4 -Wall drawing to out-of-bounds locations (GD) resulted in huge image. The pl bounding box was set to a huge rectangle due to a wild draw op.. then the final GD crop operation used the huge bounding box to set the size for the cropped result. Fixed by limiting final result to 'pagesize'. proc bars - longways labels on bars that travel beyond plot area boundary weren't being shown/centered properly. in the -scale parameter, if you used -scale 1,2 the scale did not change but -scale 1.01,2 does work. Fixed- some code was only taking action if x scale != 1.0 svg - opening <svg> tag didn't have xmlns:xlink parameter (always); font size didn't have "pt" on end (firefox 1.5 / easytimeline) proc getdata - instability when there were more field names than available data fields. Fixed - number of field names now sets the 'nfields' idea of how many fields there are. This only happens when nfields is not explicitly specified. scatterplot - short line segments as symbols - no legend entries were appeariing proc legend - longer line segments were colliding with other entries in "across" format proc rangesweep - instability when bad values encountered in data proc annotate - box outline color not being set properly proc bars - showvalues - conflict between "backbox" and "labeldetails: color=" pl -errfile stdout (w/ no other args) gave seg fault prefab scat - new maxinpoints= parameter (for curvefit) heatmaps - with contentfield= and values 0.0 -> 1.0 .. cutoff table was not automatically created properly. prefabs - some prefab parameters cannot be set in a data file.. because they are set in the prefab script before getting the data. More detailed explaination in docs. -tag command line arg wasn't generating the <embed> tag for svg scatterplot - heatmap-related cell coloring bug draw prefab - win32 issue with dumpfile autorange - code bug involving nearest=hours Ploticus 2.32 (Aug 2005) - New features proc legend - support for multi-column or multi-row legends, word wrap for legend entries, backing box, title, and others. Thanks to Philippe Jalaber and Tobias Minich who suggested some of these features. Examples proc venndisk - new proc for producing venn diagrams. example textdetails - new linesep attribute to control line spacing. mousover/tooltip labels can now be up to 1500 chars. Also any proc that had a clickmaplabel attribute now also has a clickmaplabeltext multiline attribute. This is to accomodate chunks of javascript code as used with SVG mouseover/tooltip method #2. proc axis - month stub inc with datetime scaletype now supported. proc pie - new wraplen attribute to wordwrap pie slice labels new function - $rewritenum(f) which takes a numeric quantity f and returns it rewritten for display purposes, applying numbernotation (as specified in your proc settings or config file) new function - $textwidth(f) returns horizontal width of FreeType bounding box. Useful only with freetype fonts, otherwise it returns 0. Suggested/contributed by Erik Zachte. autorange - if user doesn't specify numformat, %f is now automatically used to build result with high magnitude low variance data sets (such as where the min is 1,000,000 and the max is 1,000,003). Prefab parameters for access to some of the new proc legend features; and some other prefab items. More info 2.32 Bug fixes date notations involving dots (such as dd.mm.yy) weren't being handled properly gd16.c gcc 4 compile issue (static int cost, static int sint) crosshatch lines were too thin w/ svg proc bars - with 'truncate', bar completely out of range was suppressed but label still appears drawcommands ignored cm units - fixed. Also, mark and cblock now accept posex specifications. heatmap prefab - now supports title and related parameters. superscripts in X axis stubs showed up on Y axis - fixed autorange - now handles degenerate case where all data are 0 proc vector - instability if start and end points of a vector are same proc getdata no longer does a popen( cat filename ) in CGI mode strange color change problem - related to certain degenerate lineplots that don't draw anything. Bug in proc_lineplot.c fixed. proc legend width attribute now supports cm heatmap prefab - yaxis=none didn't have any effect. Fixed. proc pie - with outlinedetails: none the labels and any associated lines disappeared proc scatterplot - default clustermethod was horizontal when ylocation given.. and vertical when xlocation given.. seems like it should be the other way round.. so I changed it. with datetime (others?) xautorange nearest=exact wasn't working command line option -prefab is now disabled when operating in direct cgi mode command line option -drawdumpa displayed to x11 but shouldn't
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
to allow package to continue to work as previously packaged. +LICENSE; From NEWS: tig-1.1 ------- Incompatibilities: - Disable diff move/copy detection by default, boosting diff performance on larger projects. Use git config 'diff.renames' option (git-wide) to set your preferred behavior. Environment variable TIG_DIFF_OPTS can be used to restore the old behavior. - Values set for author-width and filename-width will result in widths one character bigger than previously. Improvements: - Typing a text in the prompt will be interpreted as a tig command. Prefixing the command with a '!' will execute this system command in an external pager. Entering a single key will execute the corresponding key binding. - Basic support for wrapping long line in pager, diff, and stage views. Enable using: `set wrap-lines = yes`. (GH #2) - User-defined commands prefixed with a '?' means prompt before execution. Example: `bind main B !?git rebase -i %(commit)`. - User-defined commands prefixed with a '<' means exit after execution. Example: `bind main C !<git commit`. (GH #66) - User-defined commands are executed unquoted to support shell commands. Example: `bind generic I !@sh -c "echo -n %(commit) | xclip -selection c"`. (GH #65) - Configure case-insensitive searches using: `set ignore-case = yes`. - Add "deleted mode" line type for better diff coloring. - Open editor when requesting edit action from within a file diff. - Update AX_WITH_CURSES to build under Cygwin. - Improve tigrc(5) documentation. (Debian #682766) - Allow to build on Mac OS 10.7 without the configure script. (GH #25) - Add option to split the view vertically instead of horizontally. Example: `set vertical-split = yes'. (GH #76) - Add 'show-id' and 'id-width' options to configure the display of commit IDs in the main view and ID width in the blame view. (GH #77) - Allow to override git-based encoding to UTF-8 by setting 'i18n.commitencoding' or 'gui.encoding'. - Improve autobuild support to track generated files and work with autoreconf 2.61. - Commit IDs are read from stdin when --stdin is given; works for main and diff view, e.g. `tig --no-walk --stdin < cherry-picks.txt`. - Add option to disable focusing of the child view when it's opened. Disable using: `set focus-child = no`. (GH #83) - Allow to open blob related with added content in a diff. (GH #91) Bug fixes: - Fix commit graph regression when a path spec is specified. (GH #53) - Main view: only show staged/unstaged changes for the current branch. - Support submodules created with current version of git. (GH #54) - Fix diff status message for file diffs with no content changes. - Fix parent blaming when tig is launched in subdirectory. (GH #70) - Do not show deleted branch when reloading the branch view. tig-1.0 ------- The master repository is git://github.com/jonas/tig.git, and the old master repository (http://jonas.nitro.dk/tig/tig.git) will be retired. Improvements: - Use git-log(1)s default commit ordering. The old behavior can be restored by adding `set commit-order = topo` to ~/.tigrc. - Support staging of single lines. Bound to '1' default. (GH #21) - Use +<lineno> to open the initial view at an arbitrary line. (GH #20) - Add show-notes ~/.tigrc option. Notes are displayed by default. - Support jumping to specific SHAs in the main view. - Decorate replaced commits. - Display line numbers in main view. - Colorize binary diff stats. (GH #17) - Custom colorization of lines matching a string prefix (GH #16). Example configuration: color "Reported-by:" green default - Use git's color settings for the main, status and diff views. Put `set read-git-colors = no` in ~/.tigrc to disable. - Handle editor options with multiple arguments. (GH #12) - Show filename when running tig blame with copy detection. (GH #19) - Use 'source <path>' command to load additional files from ~/.tigrc - User-defined commands prefixed with '@' are run with no console output, e.g. bind generic 3 !@rm sys$command - Make display of space changes togglable in the diff and stage view. Bound to 'W' by default. - Use per-file encoding specified in gitattributes(5) for blobs and unstaged files. - Obsolete commit-encoding option and pass --encoding=UTF-8 to revision commands. - Main view: show uncommitted changes as staged/unstaged commits. Can be disabled by putting `set show-changes = no` in ~/.tigrc. - Add %(prompt) external command variable, which will prompt for the argument value. - Log information about git commands when the TIG_TRACE environment variable is set. Example: `TIG_TRACE=/tmp/tig.log tig` - Branch view: Show the title of the last commit. - Increase the author auto-abbreviation threshold to 10. (GH #49) - For old commits show number of years in relative dates. (GH #50) Bug fixes: - Fix navigation behavior when going from branch to main view. (GH #38) - Fix segfault when sorting the tree view by author name. - Fix diff stat navigation for unmodified files with stat changes. - Show branches/refs which names are a substring of the current branch. - Stage view: fix off-by-one error when jumping to a file in a diff with only one file. - Fix diff-header colorization. (GH #15) tig-0.18 -------- Incompatibilities: - Remove support for the deprecated TIG_{MAIN,DIFF,LOG,TREE,BLOB}_CMD environment variables. Improvements: - Pressing enter on diff stat file lines will jump to file's diff. - Naïvely color blame IDs to distinguish lines. - Document palette color options used for revision graph and blame IDs. - Add support for blaming diff lines. - Add diff-context option and bindings to increase the diff context in the diff and stage view. - (GH-6) Make blame configurable via extra options passed from the command line and blame-options setting from ~/.tigrc. For example: set blame-options = -C -C -C Bug fixes: - Expand browsing state variables for prompt. (LP #694780, Debian #635546) - Fix segfault when sorting the branch view by author. - Expand %(directory) to . for the root directory. (GH-3) - Accept 'utf-8' for the line-graphics option as indicated in the docs. - Use erasechar() to check for the correct backspace character.
jperkin
pushed a commit
that referenced
this issue
Dec 9, 2013
Upstream changes: ----------------------------------------- version 1.24 at 2013-06-21 07:01:12 +0000 ----------------------------------------- Change: 73f1b5bdee2bcf52a9e39f7ae61ca4d003881f22 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-06-21 08:01:12 +0000 Updated for v5.19.1 Change: 76c5a70570ee99229c4553717e4368782dad77c7 Author: Chris Williams <[email protected]> Date : 2013-05-27 03:05:10 +0000 Merge pull request #2 from salva/give-more add sub 'perl_versions' that returns the list of versions supported by the module Change: 311199c26fcf63d80b39bcacc462e87e0b593aed Author: Salvador <[email protected]> Date : 2013-05-27 11:06:12 +0000 add tests for perl_versions sub Change: fe9542930febd38718ecaf459c80da36507e9741 Author: Salvador <[email protected]> Date : 2013-05-27 10:08:41 +0000 add perl_versions function returning list of perl versions known to the module ----------------------------------------- version 1.22 at 2013-05-20 13:25:00 +0000 ----------------------------------------- Change: ed957be9c3111676ffb25194a8531928032b2746 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-20 14:25:00 +0000 Fixing distribution Change: 6582aa42e3fe2769ed1588c75f1f3ee9362593f0 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-20 14:24:10 +0000 Updated for v5.19.0 ----------------------------------------- version 1.20 at 2013-05-18 13:57:11 +0000 ----------------------------------------- Change: 031e41245d08267e244c8446e8085d695e8956c7 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-18 14:57:11 +0000 Updated for v5.18.0 \o/ ----------------------------------------- version 1.16 at 2013-05-16 06:55:41 +0000 ----------------------------------------- Change: bfc7cb272a3854f5a61aed2f40591e74f01d5f29 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-16 07:55:41 +0000 Updated for v5.18.0-RC4 ----------------------------------------- version 1.14 at 2013-05-13 21:59:54 +0000 ----------------------------------------- Change: 3882ae87524c944ef1c63ead804c583e9165a43b Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-13 22:59:54 +0000 Updated for v5.18.0-RC3 ----------------------------------------- version 1.12 at 2013-05-13 07:11:33 +0000 ----------------------------------------- Change: 625b20e9dee61f43d054f0e798399611c70f1bce Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-05-13 08:11:33 +0000 Updated for v5.18.0-RC1/RC2 ----------------------------------------- version 1.10 at 2013-04-21 08:23:41 +0000 ----------------------------------------- Change: d369eb6b8a337a0365e74f79af7c1b7cca5a0f3e Author: Chris 'BinGOs' Williams <[email protected]> Date : 2013-04-21 09:23:41 +0000 Updated for v5.17.11
jperkin
pushed a commit
that referenced
this issue
Mar 5, 2015
Changes with Apache Libcloud 0.17.0 General Use match_hostname function from backports.ssl_match_hostname package to verify the SSL certificate hostname instead of relying on our own logic. (GITHUB-374) [Alex Gaynor] Compute GCE driver updated to include ex_stop_node() and ex_start_node() methods. (GITHUB-442) [Eric Johnson] GCE driver now raises ResourceNotFoundError when the specified image is not found in any image project. Previously, this would return None but now raises the not-found exception instead. This fixes a bug where returning None caused ex_delete_image to raise an AttributeError. (GITHUB-441) [Eric Johnson] GCE driver update to support JSON format Service Account files and a PY3 fix from Siim Põder for LIBCLOUD-627. (LIBCLOUD-627, LIBCLOUD-657, GITHUB-438) [Eric Johnson] GCE driver fixed for missing param on ex_add_access_config. (GITHUB-435) [Peter Mooshammer] GCE driver support for HTTP load-balancer resources. (LIBCLOUD-605, GITHUB-429) [Lee Verberne] GCE driver updated to make better use of GCEDiskTypes. (GITHUB-428) [Eric Johnson] GCE driver list_images() now returns all non-deprecated images by default. (LIBCLOUD-602, GITHUB-423) [Eric Johnson] Improve GCE API coverage for create_node(). (GITHUB-419) [Eric Johnson] GCE Licenses added to the GCE driver. (GITHUB-420) [Eric Johnson] GCE Projects support common instance metadata and usage export buckets. (GITHUB-409) [Eric Johnson] Improvements to TargetPool resource in GCE driver. (GITHUB-414) [Eric Johnson] Adding TargetInstances resource to GCE driver. (GITHUB-393) [Eric Johnson] Adding DiskTypes resource to GCE driver. (GITHUB-391) [Eric Johnson] Fix boot disk auto_delete in GCE driver. (GITHUB-412) [Igor Bogomazov] Add Routes to GCE driver. (GITHUB-410) [Eric Johnson] Add missing ubuntu-os-cloud images to the GCE driver. (LIBCLOUD-632, GITHUB-385) [Borja Martin] Add new us-east-2 and us-east-3 region to the Joyent driver. (GITHUB-386) [ZuluPro] Add missing t2. instance types to the us-west-1 region in the EC2 driver. (GITHUB-388) [Matt Lehman] Add option to expunge VM on destroy in CloudStack driver. (GITHUB-382) [Roeland Kuipers] Add extra attribute in list_images for CloudStack driver. (GITHUB-389) [Loic Lambiel] Add ex_security_group_ids argument to the create_node method in the EC2 driver. This way users can launch VPC nodes with security groups. (GITHUB-373) [Itxaka Serrano] Add description argument to GCE Network. (GITHUB-397) [Eric Johnson] GCE: Improve MachineType (size) coverage of GCE API. (GITHUB-396) [Eric Johnson] GCE: Improved Images coverage. (GITHUB-395) [Eric Johnson] GCE: Support for global IP addresses. (GITHUB-390, GITHUB-394) [Eric Johnson] GCE: Add missing snapshot attributes. (GITHUB-401) [Eric Johnson] AWS: Set proper disk size in c3.X instance types. (GITHUB-405) [Itxaka Serrano] Fix a bug with handling of the ex_keyname argument in the Softlayer driver. (GITHUB-416, LIBCLOUD-647) [Dustin Oberloh] Update CloudSigma region list (remove Las Vegas, NV region and add new San Jose, CA and Miami, FL region). (GITHUB-417) [Viktor Petersson] Add ex_get_node method to the Joyent driver. (GITHUB-421) [ZuluPro] Add support for placement group management to the EC2 driver. (GITHUB-418) [Mikhail Ovsyannikov] Add new tok02 region to the Softlayer driver. (GITHUB-436, LIBCLOUD-656) [Dustin Oberloh] Add new Honolulu, HI endpoint to the CloudSigma driver. (GITHUB-439) [Stephen D. Spencer] Fix a bug with config_drive attribute in the OpenStack driver. New versions of OpenStack now return a boolean and not a string. (GITHUB-433) [quilombo] Add support for Abiquo API v3.x, remove support for now obsolete API v2.x. (GITHUB-433, LIBCLOUD-652) [David Freedman] Allow rootdisksize parameter in create_node CloudStack driver (GITHUB-440, LIBCLOUD-658) [Loic Lambiel] Storage Allow user to pass headers argument to the upload_object and upload_object_via_stream method. This way user can specify CORS headers with the drivers which support that. (GITHUB-403, GITHUB-404) [Peter Schmidt] Fix upload_object_via_stream so it works correctly under Python 3.x if user manually passes an iterator to the method. Also improve how reading a file in chunks works with drivers which support chunked encoding - always try to fill a chunk with CHUNK_SIZE bytes instead of directly streaming the chunk which iterator returns. Previously, if iterator returned 1 byte in one iteration, we would directly send this as a single chunk to the API. (GITHUB-408, LIBCLOUD-639) [Peter Schmidt] Loadbalancer Updates to CloudStack driver. (GITHUB-434) [Jeroen de Korte] DNS New driver for Softlayer DNS service. (GITHUB-413, LIBCLOUD-640) [Vanč Levstik] Fix a bug with ex_create_multi_value_record method in the Route53 driver only returning a single record. (GITHUB-431, LIBCLOUD-650) [Itxaka Serrano] Changes with Apache Libcloud 0.16.0 General Add new OpenStackIdentity_3_0_Connection class for working with OpenStack Identity (Keystone) service API v3. [Tomaz Muraus] Add support for prettifying JSON or XML response body which is printed to a file like object when using LIBCLOUD_DEBUG environment variable. This option can be enabled by setting LIBCLOUD_DEBUG_PRETTY_PRINT_RESPONSE environment variable. [Tomaz Muraus] Add support for using an HTTP proxy for outgoing HTTP and HTTPS requests. [Tomaz Muraus, Philip Kershaw] Compute Fix an issue with LIBCLOUD_DEBUG not working correctly with the Linode driver. [Tomaz Muraus, Juan Carlos Moreno] (LIBCLOUD-598, GITHUB-342) Add new driver for VMware vSphere (http://www.vmware.com/products/vsphere/) based clouds. [Tomaz Muraus] Add two new default node states - NodeState.SUSPENDED and NodeState.ERROR. [Tomaz Muraus] Fix to join networks properly in deploy_node in the CloudStack driver. (LIBCLOUD-593, GITUHB-336) [Atsushi Sasaki] Create CloudStackFirewallRule class and corresponding methods. (LIBCLOUD-594, GITHUB-337) [Atsushi Sasaki] Add support for SSD disks to Google Compute driver. (GITHUB-339) [Eric Johnson] Add utility get_regions and get_service_names methods to the OpenStackServiceCatalog class. [Andrew Mann, Tomaz Muraus] Fix a bug in ex_get_console_output in the EC2 driver which would cause an exception to be thrown if there was no console output for a particular node. Reported by Chris DeRamus. [Tomaz Muraus] Add ip_address parameter in CloudStack driver create_node method. (GITHUB-346) [Roeland Kuipers] Fix ParamikoSSHClient.run and deploy_node method to work correctly under Python 3. (GITHUB-347) [Eddy Reyes] Update OpenStack driver to map more node states to states recognized by Libcloud. [Chris DeRamus] Fix a bug with ex_metadata argument handling in the Google Compute Engine driver create_node method. (LIBCLOUD-544, GITHUB-349, GITHUB-353) [Raphael Theberge] Add SSH key pair management methods to the Softlayer driver. (GITHUB-321, GITHUB-354) [Itxaka Serrano] Correctly categorize node IP addresses into public and private when dealing with OpenStack floating IPs. [Andrew Mann] Add new t2 instance types to the EC2 driver. [Tomaz Muraus] Add support for Amazon GovCloud to the EC2 driver (us-gov-west-1 region). [Chris DeRamus] Allow user to pass "gp2" for "ex_volume_type" argument to the create_volume method in the EC2 driver. Reported by Xavier Barbosa. [Tomaz Muraus, Xavier Barbosa] Add new driver for ProfitBricks provider. (LIBCLOUD-589, GITHUB-352) [Matt Baldwin] Various improvements and bugs fixes in the GCE driver. For a list, see https://github.com/apache/libcloud/pull/360/commits (GITHUB-360) [Evgeny Egorochkin] Allow user to specify virtualization type when registering an EC2 image by passing virtualization_type argument to the ex_register_image method. (GITHUB-361) [Andy Grimm] Add ex_create_image method to the GCE driver. (GITHUB-358, LIBCLOUD-611) [Katriel Traum] Add some methods to CloudStack driver: create_volume_snapshot, list_snapshots, destroy_volume_snapshot create_snapshot_template, ex_list_os_types) (GITHUB-363, LIBCLOUD-616) [Oleg Suharev] Added VPC support and Egress Firewall rule support fo CloudStack (GITHUB-363) [Jeroen de Korte] Add additional attributes to the extra dictionary of OpenStack StorageVolume object. (GITHUB-366) [Gertjan Oude Lohuis] Fix create_volume method in the OpenStack driver to return a created volume object (instance of StorageVolume) on success, instead of a boolean indicating operation success. (GITHUB-365) [Gertjan Oude Lohuis] Add optional project parameters for ex_list_networks() to CloudStack driver (GITHUB-367, LIBCLOUD-615) [Rene Moser] CLOUDSTACK: option to start VM in a STOPPED state (GITHUB-368) [Roeland Kuipers] Support "config_drive" in the OpenStack driver. Allow users to pass ex_config_drive argument to the create_node and ex_rebuild_node method. (GITHUB-370) [Nirmal Ranganathan] Add support for service scopes to the create_node method in the GCE driver. (LIBCLOUD-578, GITHUB-373) [Eric Johnson] Update GCE driver to allow for authentication with internal metadata service. (LIBCLOUD-625, LIBCLOUD-276, GITHUB-276) [Eric Johnson] Fix a bug in Elasticstack node creation method where it would raise exceptions because of missing data in a response, and also fix pulling the IP from the proper data item. (GITHUB-325) [Michael Bennett] Fix a bug which prevented user to connect and instantiate multiple EC2 driver instances for different regions at the same time. (GITHUB-325) [Michael Bennett] Add methods in CloudStack driver to manage mutiple nics per vm. (GITHUB-369) [Roeland Kuipers] Implements VPC network ACLs for CloudStack driver. (GITHUB-371) [Jeroen de Korte] Storage Fix a bug with CDN requests in the CloudFiles driver. [Tomaz Muraus] Fix a bug with not being able to specify meta_data / tags when uploading an object using Google Storage driver. (LIBCLOUD-612, GITHUB-356) [Stefan Friesel] Loadbalancer Allow user to specify session affinity algorithm in the GCE driver by passing ex_session_affinity argument to the create_balancer method. (LIBCLOUD-595, GITHUB-341) [Lee Verberne, Eric Johnson] DNS Various fixes in the Google DNS driver. (GITHUB-378) [Franck Cuny] Changes with Apache Libcloud 0.15.1 Compute Allow user to limit a list of subnets which are returned by passing subnet_ids and filters argument to the ex_list_subnets method in the EC2 driver. (LIBCLOUD-571, GITHUB-306) [Lior Goikhburg] Allow user to limit a list of internet gateways which are returned by passing gateway_ids and filters argument to the ex_list_internet_gateways method in the EC2 driver. (LIBCLOUD-572, GITHUB-307) [Lior Goikhburg] Allow user to filter which nodes are returned by passing ex_filters argument to the list_nodes method in the EC2 driver. (LIBCLOUD-580, GITHUB-320) [Lior Goikhburg] Add network_association_id to ex_list_public_ips and CloudstackAddress object (GITHUB-327) [Roeland Kuipers] Allow user to specify admin password by passing ex_admin_pass argument to the create_node method in the Openstack driver. (GITHUB-315) [Marcus Devich] Fix a possible race condition in deploy_node which would occur if node is online and can be accessed via SSH, but the SSH key we want to use hasn't been installed yet. Previously, we would immediately throw if we can connect, but the SSH key hasn't been installed yet. (GITHUB-331) [David Gay] Propagate an exception in deploy_node method if user specified an invalid path to the private key file. Previously this exception was silently swallowed and ignored. [Tomaz Muraus] DNS Include a better message in the exception which is thrown when a request in the Rackspace driver ends up in an ERROR state. [Tomaz Muraus] Changes with Apache Libcloud 0.15.0 General Use lxml library (if available) for parsing XML. This should substantially reduce parsing time and memory usage for large XML responses (e.g. retrieving all the available images in the EC2 driver). [Andrew Mann] Use --head flag instead of -X HEAD when logging curl lines for HEAD requests in debug mode. Reported by Brian Metzler. (LIBCLOUD-552) [Tomaz Muraus] Fix Python 3 compatibility bugs in the following functions: import_key_pair_from_string in the EC2 driver publickey._to_md5_fingerprint publickey.get_pubkey_ssh2_fingerprint (GITHUB-301) [Csaba Hoch] Update CA_CERTS_PATH to also look for CA cert bundle which comes with openssl Homebrew formula on OS x (/usr/local/etc/openssl/cert.pem). (GITHUB-309) [Pedro Romano] Update Google drivers to allow simultaneous authornization for all the supported Google Services. (GITHUB-302) [Eric Johnson] Compute Fix create_key_pair method which was not returning private key. (LIBCLOUD-566) [Sebastien Goasguen] Map "Stopped" node state in the CloudStack driver to NodeState.STOPPED instead of NodeState.TERMINATED, "Stopping" to NodeState.PENDING instead of NodeState.TERMINATED and "Expunging" to NodeState.PENDING instead of NodeState.TERMINATED. (GITHUB-246) [Chris DeRamus, Tomaz Muraus] Add ex_create_tags and ex_delete_tags method to the CloudStack driver. (LIBCLOUD-514, GITHUB-248) [Chris DeRamus] Add new G2 instances to the EC2 driver. [Tomaz Muraus] Add support for multiple API versions to the Eucalyptus driver and allows user to pass "api_version" argument to the driver constructor. (LIBCLOUD-516, GITHUB-249) [Chris DeRamus] Map "Powered Off" state in the vCloud driver from "TERMINATED" to "STOPPED". (GITHUB-251) [Ash Berlin] Add ex_rename_node method to the DigitalOcean driver. (GITHUB-252) [Rahul Ranjan] Improve error parsing in the DigitalOcean driver. Reported by Deni Bertovic. [Tomaz Muraus] Add extension methods for the VPC internet gateway management to the EC2 driver. (LIBCLOUD-525, GITHUB-255) [Chris DeRamus] Add CloudStackProject class to the CloudStack driver and add option to select project and disk offering on node creation. (LIBCLOUD-526, GITHUB-257) [Jim Divine] Fix IP address handling in the OpenStack driver. (LIBCLOUD-503, GITHUB-235) [Markos Gogoulos] Ad new ex_delete_image and ex_deprecate_image method to the GCE driver. (GITHUB-260) [Franck Cuny] Ad new ex_copy_image method to the GCE driver. (GITHUB-258) [Franck Cuny] Ad new ex_set_volume_auto_delete method to the GCE driver. (GITHUB-264) [Franck Cuny] Add ex_revoke_security_group_ingress method to the CloudStack driver. [Chris DeRamus, Tomaz Muraus] Allow user to pass ex_ebs_optimized argument to the create_node method in the EC2 driver. (GITHUB-272) [zerthimon] Add "deprecated" attribute to the Node object in the Google Compute Engine driver. (GITHUB-276) [Chris / bassdread] Update Softlayer driver to use "fullyQualifiedDomainName" instead of "hostname" attribute for the node name. (GITHUB-280) [RoelVanNyen] Allow user to specify target tags using target_tags attribute when creating a firewall rule in the GCE driver. (GITHUB-278) [zerthimon] Add new standard API for image management and initial implementation for the EC2 and Rackspace driver. (GITHUB-277) [Matt Lehman] Allow user to specify "displayname" attribute when creating a CloudStack node by passing "ex_displayname" argument to the method. Also allow "name" argument to be empty (None). This way CloudStack automatically uses Node's UUID for the name. (GITHUB-289) [Jeff Moody] Deprecate "key" argument in the SSHClient class in favor of new "key_files" argument. Also add a new "key_material" argument. This argument can contain raw string version of a private key. Note 1: "key_files" and "key_material" arguments are mutually exclusive. Note 2: "key_material" argument is not supported in the ShellOutSSHClient. Use node id attribute instead of the name for the "lconfig" label in the Linode driver. This way the label is never longer than 48 characters. (GITHUB-287) [earthgecko] Add a new driver for Outscale SAS and Outscale INC cloud (http://www.outscale.com). (GITHUB-285, GITHUB-293, LIBCLOUD-536, LIBCLOUD-553) [Benoit Canet] Add new driver for HP Public Cloud (Helion) available via Provider.HPCLOUD constant. [Tomaz Muraus] Allow user to specify availability zone when creating an OpenStack node by passing "ex_availability_zone" argument to the create_node method. Note: This will only work if the OpenStack installation is running availability zones extension. (GITHUB-295, LIBCLOUD-555) [syndicut] Allow user to pass filters to ex_list_networks method in the EC2 driver. (GITHUB-294) [zerthimon] Allow user to retrieve container images using ex_get_image method in the Google Compute Engine driver. (GITHUB-299, LIBCLOUD-562) [Magnus Andersson] Add new driver for Kili public cloud (http://kili.io/) [Tomaz Muraus] Add "timeout" argument to the ParamikoSSHClient.run method. If this argument is specified and the command passed to run method doesn't finish in the defined timeout, SSHCommandTimeoutError is throw and the connection to the remote server is closed. Note #1: If timed out happens, this functionality doesn't guarantee that the underlying command will be stopped / killed. The way it works it simply closes a connect to the remote server. [Tomaz Muraus] Note #2: "timeout" argument is only available in the Paramiko SSH client. Make "cidrs_ips" argument in the ex_authorize_security_group_egress method in the EC2 driver mandatory. (GITHUB-301) [Csaba Hoch] Add extension methods for managing floating IPs (ex_get_floating_ip, ex_create_floating_ip, ex_delete_floating_ip) to the Openstack 1.1 driver. (GITHUB-301) [Csaba Hoch] Fix bug in RimuHosting driver which caused driver not to work when the provider returned compressed (gzip'ed) response. (LIBCLOUD-569, GITHUB-303) [amastracci] Fix issue with overwriting the server memory values in the RimuHosting driver. (GUTHUB-308) [Dustin Oberloh] Add ex_all_tenants argument to the list_nodes method in the OpenStack driver. (GITHUB-312) [LIBCLOUD-575, Zak Estrada] Add support for network management for advanced zones (ex_list_network_offerings, ex_create_network, ex_delete_network) in the CloudStack driver. (GITHUB-316) [Roeland Kuipers] Add extension methods for routes and route table management to the EC2 driver (ex_list_route_tables, ex_create_route_table, ex_delete_route_table, ex_associate_route_table, ex_dissociate_route_table, ex_replace_route_table_association, ex_create_route, ex_delete_route, ex_replace_route) (LIBCLOUD-574, GITHUB-313) [Lior Goikhburg] Fix ex_list_snapshots for HP Helion OpenStack based driver. [Tomaz Muraus] Allow user to specify volume type and number of IOPS when creating a new volume in the EC2 driver by passing ex_volume_type and ex_iops argument to the create_volume method. [Tomaz Muraus] Fix ex_unpause_node method in the OpenStack driver. (GITHUB-317) [Pablo Orduña] Allow user to launch EC2 node in a specific VPC subnet by passing ex_subnet argument to the create_node method. (GITHUB-318) [Lior Goikhburg] Storage Fix container name encoding in the iterate_container_objects and get_container_cdn_url method in the CloudFiles driver. Previously, those methods would throw an exception if user passed in a container name which contained a whitespace. Reported by Brian Metzler. (LIBCLOUD-552) [Tomaz MUraus] Fix a bug in the OpenStack Swift driver which prevented the driver to work with installations where region names in the service catalog weren't upper case. (LIBCLOUD-576, GITHUB-311) [Zak Estrada] Load Balancer Add extension methods for policy managagement to the ELB driver. (LIBCLOUD-522, GITHUB-253) [Rahul Ranjan] DNS Fix update_record method in the Route56 driver so it works correctly for records with multiple values. [Tomaz Muraus] Add ex_create_multi_value_record method to the Route53 driver which allows user to create a record with multiple values with a single call. [Tomaz Muraus] Add new driver for Google DNS. (GITHUB-269) [Franck Cuny]
jperkin
pushed a commit
that referenced
this issue
Mar 14, 2015
jperkin
pushed a commit
that referenced
this issue
Apr 16, 2015
-------------- 2.84 2013-08-13T14:25:21Z - Added `--smtp-tls` to the output of `man svnnotify`. - Removed `--smtp-authtype` from the output of `man svnnotify`. - Added `--diff-content-type` option. Defaults to "text/plain" for backward compatibility. Patch by Daniel P. Wright. - Renamed `Filter.pm` to `Filter.pod`, since it's just documentation. - Removed the pod tests from the distribution. - Changed the CSS for message `<pre>` blocks to use `white-space: pre-line`, so that long lines will be wrapped, but newlines are still respected as usual. Thanks to Dave Abrahams for the patch (and the persistence). - Changed C<to_regex_map> to allow it to match any path in the repository, including files, rather than just directories. Patch from mscherer. - Fixed error when the first line of the commit message is less than 10 characters long (issue #2). - Fixed the "From" and "To" headers so that they are properly encoded as MIME headers (issue #6). - Removed the Makefile.PL, which was just passing through to Module::Build. That pattern is now deprecated, and Module::Build is required for configuration.
jperkin
pushed a commit
that referenced
this issue
Jun 1, 2015
Update DEPENDS Upstream changes: commit 3083307fc8ebf938673028cf7ffc3ccff6a4cac6 Author: Edzer Pebesma <[email protected]> Date: Fri Apr 24 13:56:40 2015 +0200 upgrade to match sp 1.1-0 commit 5e7950336984a567c0f07abb019930dbaf068abb Author: Edzer Pebesma <[email protected]> Date: Tue Mar 17 14:21:20 2015 +0100 docs for expand.range commit 58d8db3d8863eee96aeea1cf458fbee2e42b32db Author: Edzer Pebesma <[email protected]> Date: Tue Mar 17 14:18:44 2015 +0100 range of at was too small; report by Roland Harhoff commit af552c7e902b69979f309bcf1f795bc7cf782f11 Author: Edzer Pebesma <[email protected]> Date: Tue Mar 17 13:56:53 2015 +0100 add drop=FALSE to data.frame selector commit 8ac495755ea13ef90b9e378ec26b963ea316174b Author: Edzer Pebesma <[email protected]> Date: Fri Mar 13 16:20:47 2015 +0100 adding +ellps= to CRS arguments, for PROJ 4.9.1 commit 393bb24344b7b3648086ecadf5bf287bdea4fcde Author: Edzer Pebesma <[email protected]> Date: Thu Mar 5 00:12:50 2015 +0100 replace unstack with reshape; clean check commit 45bf1588eef7e2ddbf07f843333d72f0a99d0e4f Author: Edzer Pebesma <[email protected]> Date: Wed Mar 4 20:27:51 2015 +0100 stplot mode = "xt" for factor: plots as number but no longer crashes commit b7e51d1720dace123a73669ee04b77255a0b9c09 Author: Edzer Pebesma <[email protected]> Date: Wed Mar 4 19:07:27 2015 +0100 stplot factor variables when mode = "xy" commit 24671c67b17293749937d7c955a80ce8e12ac619 Author: Edzer Pebesma <[email protected]> Date: Wed Feb 11 10:51:18 2015 +0100 make stsdf[1,1] do sth more sensible commit e7d26c403722f6dfe08f27bbbe82644e2f48976e Author: Edzer Pebesma <[email protected]> Date: Wed Jan 28 12:13:49 2015 +0100 improve error message commit f37ad515f35e21f9351c290437f2948f34b5f894 Author: Edzer Pebesma <[email protected]> Date: Wed Jan 28 10:25:09 2015 +0100 enable check on duplicate attributes for STSDF commit 995dd6d742143bf9fcc4d43c19c358f9a4bc626c Author: Edzer Pebesma <[email protected]> Date: Tue Jan 27 23:34:52 2015 +0100 adopt new behaviour for STFDF too commit 08fcfb9f1555e283c82107256c055a5bead0b265 Author: Edzer Pebesma <[email protected]> Date: Tue Jan 27 23:18:42 2015 +0100 add timeIndex to xts output on single pt subset; report from Jon Skoien; commit 68d9420d6a9bad79f3b84c656cbfc9f670fe5a28 Author: Edzer Pebesma <[email protected]> Date: Sat Jan 24 10:19:17 2015 +0100 remove rgeos dependency in sto.Rnw, add DE to air.rda commit 097d3a0fbc63f2ef7773825c07d35eafa3ab3cba Author: Edzer Pebesma <[email protected]> Date: Wed Jan 21 23:20:34 2015 +0100 make rgeos requirement conditional commit cddc6c9ac45dfc7664c7e5b3adbcc65b0f499961 Author: Edzer Pebesma <[email protected]> Date: Wed Jan 21 09:08:18 2015 +0100 bump version commit 218a99f5b7b475353f8b37246c945c47f881f6aa Author: Edzer Pebesma <[email protected]> Date: Mon Jan 19 14:55:57 2015 +0100 correct timeIndex order for as.data.frame.STS, reported by Jon Skoien commit 6502ebfd51b6704669c46d26c8dd2b7304c630ef Author: Edzer Pebesma <[email protected]> Date: Sat Jan 17 23:05:15 2015 +0100 conditional require(rgeos) in example commit 3f4f8a5c3e6048393ad14fd4444ec03773207dc9 Author: Edzer Pebesma <[email protected]> Date: Thu Jan 15 13:05:22 2015 +0100 more spTransform commit a29c98f3c80a784967bc319b5c63a9a725b631cd Author: Edzer Pebesma <[email protected]> Date: Thu Jan 15 13:03:49 2015 +0100 title case; address rgdal requirement for spTransform commit e6073767b1e303dcb20c99cfe635d762bdd36eda Author: Edzer Pebesma <[email protected]> Date: Thu Jan 15 11:51:11 2015 +0100 update test output commit 5b36a6916bc8af4cd696bb7742b0e0f03abe5b25 Author: Edzer Pebesma <[email protected]> Date: Wed Jan 14 17:33:25 2015 +0100 typo... commit f74c045284b795bc0e4ad1e167608dfa74a21674 Author: Edzer Pebesma <[email protected]> Date: Wed Jan 14 16:59:45 2015 +0100 update test output commit 0604dd381b7e2e10f97bbc3d5b26c8119c744a8f Author: Edzer Pebesma <[email protected]> Date: Wed Jan 14 16:41:54 2015 +0100 prevent @sp attributes getting dropped (lost) commit a144894fbb8590a701cec4f99ae1f6f09d896916 Author: Edzer Pebesma <[email protected]> Date: Sun Dec 14 13:18:17 2014 +0100 correct aggregate with args STIDF, STF; add time chk commit 4c8cd4f1d6220dc43634e4333e18393a7d8d87e9 Author: Edzer Pebesma <[email protected]> Date: Sat Nov 22 12:26:03 2014 +0100 correct bug in stConstruct() when STIDF has non-chronological records commit 1969b0c7ba6197d96d4541a15a71a84a19291803 Author: Edzer Pebesma <[email protected]> Date: Thu Nov 20 11:26:02 2014 +0100 vignette pdf commit 850c3068348815205937350d9dad048ec3e18cfd Author: Edzer Pebesma <[email protected]> Date: Thu Nov 20 11:22:36 2014 +0100 update date commit 2076a4e3b24c5f2aa8e029eca1a28f9d05f39d52 Author: Edzer Pebesma <[email protected]> Date: Thu Nov 20 11:20:35 2014 +0100 aggregate() for STI and STF with polygons did not work commit d903c16d831c43ab777a552b7c31687e5046396f Author: Edzer Pebesma <[email protected]> Date: Thu Oct 30 10:55:32 2014 +0100 move rgeos to Suggests; improve wind plots in vignette commit da80be7b754e3b613107845166687b02deeb96dc Author: Edzer Pebesma <[email protected]> Date: Mon Oct 27 19:26:35 2014 +0100 update the time plots commit c1f9a7480241deeb177e345332e4045236e9c02e Author: Edzer Pebesma <[email protected]> Date: Mon Oct 27 19:17:24 2014 +0100 change argument to returnEOFs commit 1783943b6aa395ee0296bed53e88126b51909fd3 Author: Edzer Pebesma <[email protected]> Date: Mon Oct 27 19:02:58 2014 +0100 add function eof, deprecate EOF commit 480f74eb8a74adb4a2508f17d470434c2deabf42 Author: Edzer Pebesma <[email protected]> Date: Thu Oct 16 11:00:32 2014 +0200 added ... to apply() calls commit c98b5c3ae85414e1eaf53ea0bf72373d371d0dca Author: Edzer Pebesma <[email protected]> Date: Thu Oct 16 09:40:00 2014 +0200 doc omission, found by Roland Harhoff commit 9c82ea3f06c105323282e486ebae84fc6fcfbaca Author: Edzer Pebesma <[email protected]> Date: Tue Oct 14 09:25:09 2014 +0200 name too long: only use first name commit 0ed91ac92db69dc64cecaa9ecf08efbb2308db45 Author: Edzer Pebesma <[email protected]> Date: Fri Sep 26 21:44:00 2014 +0200 add parens commit be2182be7cfafadd2d5ebde3256c7eea902c5e2f Author: Edzer Pebesma <[email protected]> Date: Tue Sep 23 21:59:55 2014 +0200 add call to match.fun(), add STT method to stplot commit faab956a4f570502961e2f570b5452a346f540ba Author: Edzer Pebesma <[email protected]> Date: Thu Sep 11 23:29:30 2014 +0200 add stplot method for STT commit d83a3607c80317ace36009534c8a2cf0c276c570 Author: Edzer Pebesma <[email protected]> Date: Sun Sep 7 23:34:13 2014 +0200 add subset methods with ST objects commit c974e676d494be7cbab83798763115783704dfee Author: Edzer Pebesma <[email protected]> Date: Sun Sep 7 23:02:44 2014 +0200 add selection based on match with STF object commit 8ad1aa01bcbdc4f12e40f8ffe59a77de8157ff77 Author: Edzer Pebesma <[email protected]> Date: Sun Sep 7 23:02:29 2014 +0200 tidy tabstop commit 0db898784310fd8b209a9f586f7da47e2fd83c3b Author: Edzer Pebesma <[email protected]> Date: Sun Sep 7 22:18:52 2014 +0200 tidy (revert back to tabstop = 4 spaces) commit 5a476b1fe7580118aeee8af2cbbb5129716c7dac Author: Edzer Pebesma <[email protected]> Date: Thu Aug 28 12:36:55 2014 +0200 tzone attribute is now passed on by rbind.STIDF commit ac8c4d8bfe3e11ca8f14ade6107b917d7c49bdaa Author: Edzer Pebesma <[email protected]> Date: Sun Aug 24 14:09:14 2014 +0200 removed ISO codes from air; version bump; tidy stgvis commit 901738891468730db87e48490c2fa48fad3cd1ef Merge: 3b0096f 010b921 Author: Edzer Pebesma <[email protected]> Date: Sun Aug 24 14:05:07 2014 +0200 Merge pull request #20 from mages/patch-2 Update stgvis.Rmd commit 010b921d910fbee90bcc144a0349d7cc20bf88d0 Author: Markus Gesmann <[email protected]> Date: Sun Aug 24 11:00:48 2014 +0100 Update stgvis.Rmd Changed the order in which the data is loaded, as otherwise the mapping of German state names apears to be overwritten by data in air. commit 3b0096f5fb43ef2af9a1ad61344c8f7032056cee Merge: 709d30a c44ea66 Author: Edzer Pebesma <[email protected]> Date: Sun Aug 24 10:35:38 2014 +0200 Merge pull request #19 from mages/patch-1 Update stgvis.Rmd commit c44ea6605becfc38a4c54511a53daf4906b81aa7 Author: Markus Gesmann <[email protected]> Date: Sat Aug 23 21:05:23 2014 +0100 Update stgvis.Rmd I changed the gvisGeoMap statement to gvisGeoChart, as they don't require Flash. Further the Google geo charts understand that Berlin is not part of Brandenburg. Unfortunately, geo charts don't recognise Brandenburg as a province either, hence the codes become handy again. The German state name mapping are available via a CRAN package, thus you don't have to download them from Wikipedia. Finally, I added some number formatting to the option setting. commit 709d30a7751823aafc6fc77dd9196220edf9ecea Author: Edzer Pebesma <[email protected]> Date: Fri Aug 22 18:57:22 2014 +0200 hopefully pass check with r-devel; set TZ in subsetting.R commit 6226cea3e7f0a758763bb7208f211a032da0221f Author: Edzer Pebesma <[email protected]> Date: Fri Aug 22 15:44:37 2014 +0200 add pointer to ISO_3166_2_DE in air.rda commit 2bd0272437f47090ac5fa5ae4616e226bea5158e Author: Edzer Pebesma <[email protected]> Date: Fri Aug 22 15:41:17 2014 +0200 remove call to wikipedia, add ISO table to air add help to stpg to find out whether rgdal misses PostgreSQL driver commit 7887e760c10ba9a6501ecba1c43410558d12963c Author: Edzer Pebesma <[email protected]> Date: Fri Aug 22 09:36:48 2014 +0200 add Irish station means geo chart commit 11e5da9c96fe9f9dae8d3d93e1b54059af7adbe9 Author: Edzer Pebesma <[email protected]> Date: Fri Aug 22 08:20:57 2014 +0200 add time line graphs commit ccee6c0164714a022edf6441f41bdc863798c836 Author: Edzer Pebesma <[email protected]> Date: Thu Aug 21 13:48:55 2014 +0200 update commit 55709a1d166aaa23834fab036d3af2e08d066fdb Author: Edzer Pebesma <[email protected]> Date: Thu Aug 21 11:17:20 2014 +0200 add googleVis example vignette, typo in stsubs commit f5838cbc73c77ed072a251a4c3b6c1ec56bd5fc0 Author: Edzer Pebesma <[email protected]> Date: Thu Aug 14 13:45:17 2014 +0200 add library(sp) commit 542026cafb10400a6bab77d35e2c583783abb2b8 Author: Edzer Pebesma <[email protected]> Date: Sun Jul 13 17:51:32 2014 +0200 write.tgrass now writes init.txt commit 59fc45e87113dd5c609b4654f26402bba18b1e8d Author: Edzer Pebesma <[email protected]> Date: Wed Apr 9 15:42:22 2014 +0200 update date commit 7c0ebc61027fea62bcd59898594ea90fdece14f1 Author: Edzer Pebesma <[email protected]> Date: Tue Apr 1 16:08:37 2014 +0200 include git commit logs in ChangeLog commit b7f0e46a24e2a0ee81b022709aca83806674a1b0 Author: Edzer Pebesma <[email protected]> Date: Tue Apr 1 16:04:13 2014 +0200 depend on R 3.0.0, mv old ChangeLog commit f8d07fd645fbe53f03d77a12113f186f7acd4e99 Author: Edzer Pebesma <[email protected]> Date: Thu Mar 27 20:30:44 2014 +0100 tidy indentation and obsolete braces commit 89827b7864688b94cd8edd87312bc8d0b9004e9e Merge: 9023c72 2eca08d Author: Edzer Pebesma <[email protected]> Date: Tue Mar 25 11:35:11 2014 +0100 Merge pull request #18 from BenGraeler/master special case of one row matrices for subsetting commit 2eca08d29e11a5b01fb489104779bbfb679a23c6 Author: Benedikt Gräler <[email protected]> Date: Tue Mar 25 11:30:10 2014 +0100 - handeled the special case of one row matrices for subsetting commit 9023c7262bd12901afa4a6af3941114756726a4a Merge: d361d74 12b506f Author: Edzer Pebesma <[email protected]> Date: Fri Mar 14 10:41:06 2014 +0100 Merge pull request #17 from BenGraeler/master Unified subsetting of ST* objects commit 12b506fdc67f98c96fcb837728a39b1dcb6542a0 Merge: b0c4e1e c1bf9cf Author: Benedikt Gräler <[email protected]> Date: Thu Feb 27 14:13:46 2014 +0100 - some textual changes Merge branch 'master' of https://github.com/BenGraeler/spacetime Conflicts: vignettes/stsubs.Rnw vignettes/stsubs.pdf commit b0c4e1ef23e1c8bb0dc155bb145f45f627159142 Author: Benedikt Gräler <[email protected]> Date: Thu Feb 27 11:52:57 2014 +0100 - some textual changes in stsubs.Rnw - updated test files for subsetting commit c1bf9cf851f321c674ab5b1f8283d7143287582a Author: Benedikt Gräler <[email protected]> Date: Thu Feb 27 11:52:57 2014 +0100 - some textual changes in stsubs.Rnw commit 9add4fb1220bff4cf5af7c292cc0314619be3bf7 Author: Benedikt Gräler <[email protected]> Date: Wed Feb 26 16:52:22 2014 +0100 - added vignette on subsetting of spacetime classes - some corrections of the subsetting methods along the way of the vignette commit cdf6e5655c09843db5026301ffde4f1d79c229b8 Merge: 0acbe05 d361d74 Author: Benedikt Gräler <[email protected]> Date: Wed Feb 26 14:13:54 2014 +0100 Merge remote-tracking branch 'edzerRepo/master' commit d361d74a72065ee1579d1e16cee65954b126047b Author: Edzer Pebesma <[email protected]> Date: Wed Feb 26 12:20:28 2014 +0100 move trajectories code into a separate package commit 0acbe05cf884775d2fa40eab2846d4af70856414 Merge: 8ef17f0 8283e44 Author: Benedikt Gräler <[email protected]> Date: Tue Feb 25 16:21:23 2014 +0100 Merge remote-tracking branch 'edzerRepo/master' commit 8ef17f0a5f733c6eab7027b15db2055a3e6ba85a Merge: 2fd98e6 47d350d Author: Benedikt Gräler <[email protected]> Date: Tue Feb 25 16:18:44 2014 +0100 Merge remote-tracking branch 'edzerRepo/master' commit 2fd98e68c2c369421179aa8d16fd27accb8b7b55 Author: Benedikt Gräler <[email protected]> Date: Tue Feb 25 16:02:29 2014 +0100 - STI.. allows now for multiple selection commit 559e662ce45567fd8e34f8a5a370f777c60df4a9 Author: Benedikt Gräler <[email protected]> Date: Tue Feb 25 15:36:50 2014 +0100 - STF.. now allows for a matrix index, but returns STS.. commit 9c18d8ba936e0aebc6215a45c789ebcea6d86d6f Author: Benedikt Gräler <[email protected]> Date: Tue Feb 25 13:50:12 2014 +0100 - allow for multiple selection in STS.. - respect ordered subsetting from STS.. commit 8283e44958909bb35d398b6d535bc0eb41180e04 Author: Edzer Pebesma <[email protected]> Date: Tue Feb 18 19:00:08 2014 +0100 add url of geolife commit fd1005cd70ad57e9583d4e3bbd2623711133c79a Author: Edzer Pebesma <[email protected]> Date: Tue Feb 18 18:48:10 2014 +0100 add geolife reading demo (without geolife data) commit 259cbef2526120cac4bc8f7a9bf9fc1284e6d3a5 Author: Edzer Pebesma <[email protected]> Date: Mon Feb 17 08:59:04 2014 +0100 clean, tidy commit 7cb6f6a7eae301e2154b116d4b3bbeecea4adfd9 Author: Edzer Pebesma <[email protected]> Date: Sun Feb 16 22:59:49 2014 +0100 avoid rgl plot from vignette commit 8b680daebbdccdd3cf5ddf6fdac44c8f35c3dfbf Author: Edzer Pebesma <[email protected]> Date: Sun Feb 16 21:50:06 2014 +0100 add subsetting output commit 1a6cebfc8c0115e5efe2f58098fb5aa607ee9fa3 Author: Edzer Pebesma <[email protected]> Date: Sun Feb 16 21:49:40 2014 +0100 clean up tests commit a8c7cda2b16218beeb4090c03d6c0c9cdb2ec8bd Author: Edzer Pebesma <[email protected]> Date: Sun Feb 16 18:48:44 2014 +0100 add A3 example, add subsetting test commit 785a40cad6e5f16fd0d8223ebe03d06af21b66f0 Author: Edzer Pebesma <[email protected]> Date: Sun Feb 16 17:29:56 2014 +0100 clean tracks vignette dependencies commit 47d350d50204d6c8c0ec1cf1b701846a79ef6603 Author: Edzer Pebesma <[email protected]> Date: Fri Feb 14 17:00:14 2014 +0100 remove more dependencies commit 850c3b522b7856d8bf505b80747763a40b82dded Author: Edzer Pebesma <[email protected]> Date: Fri Feb 14 16:52:36 2014 +0100 remove dependencies in tracks.Rmd commit 14d91e6b3e7490cb715a75d1c6322775cbbcfe83 Merge: 09f8268 67d2dfb Author: Edzer Pebesma <[email protected]> Date: Fri Feb 14 15:44:50 2014 +0100 Merge branch 'master' of github.com:edzer/spacetime commit 09f82681a343f44b8bdcc46532077c56271bb569 Author: Edzer Pebesma <[email protected]> Date: Fri Feb 14 15:44:03 2014 +0100 make tracks vignette work without https, add A3 commit 67d2dfbfac10f521f65cb3265a8f995a19928b9a Merge: 196edcd a7e997f Author: Edzer Pebesma <[email protected]> Date: Sun Feb 9 10:09:49 2014 +0100 Merge pull request #16 from BenGraeler/master matrix like subsetting for STS and STSDF commit a7e997fe73ce166f04cd700a9937a36352b9c673 Author: Benedikt Gräler <[email protected]> Date: Thu Feb 6 13:08:56 2014 +0100 - ignore issues commit 196edcd5476f2d76fc5642dbe787158d4adfb782 Author: Edzer Pebesma <[email protected]> Date: Sat Jan 25 20:30:35 2014 +0100 optimize coercion from STIDF to STSDF commit 85cf72d367fe61f2e5c755cc52b337a3eac5d250 Author: Edzer Pebesma <[email protected]> Date: Mon Jan 20 08:25:39 2014 +0100 update output commit 8b580e1fa6d3ea4ba050d9b6d73f599b7918de7a Author: Edzer Pebesma <[email protected]> Date: Sun Jan 19 23:17:30 2014 +0100 merge pull request; simplify vignette requirements commit 678e7a71494724849eb7e6e9100354f0abcb08bb Merge: fe81b0d 9ed6d1c Author: Bene Luks <[email protected]> Date: Sun Jan 19 22:31:10 2014 +0100 Merge remote-tracking branch 'upstream/master' commit fe81b0d58e459e2b350a465d5fdb83a9f4c715d1 Author: Bene Luks <[email protected]> Date: Sun Jan 19 22:30:42 2014 +0100 Make R CMD build happy on Windows systems. commit 18280f3ce920c93d9e3cacda2b6e7c1671e9139b Author: Benedikt Gräler <[email protected]> Date: Wed Jan 8 17:57:49 2014 +0100 - supports matrix index for sub-setting commit 1b8588bb24f9437fd724bebc026d80f1f8ce38ea Merge: 3335b43 9ed6d1c Author: Benedikt Gräler <[email protected]> Date: Tue Jan 7 23:34:15 2014 -0800 Merge pull request #2 from edzer/master update to edzer/spacetime commit 9ed6d1c12a462d1021eb9fc9751f731e04f53369 Merge: f2306e2 84da479 Author: Edzer Pebesma <[email protected]> Date: Thu Dec 19 06:01:28 2013 -0800 Merge pull request #14 from k2sk8s/master Added vignette to summarise recent trajectory work commit 84da479fb6d42e8edf0c58d676777b485561a05c Author: Bene Luks <[email protected]> Date: Thu Dec 19 10:42:47 2013 +0100 Added vignette to summarise recent trajectory work. commit 8ed3561be1e245f06ae47d87d15ad2fb50edde85 Author: Bene Luks <[email protected]> Date: Thu Dec 19 10:41:14 2013 +0100 Fill missing attribute data with NA instead of dropping the whole column. commit f2306e215c3d3539f3b4d1dda6413288ba7b735b Merge: afcf4db 6bd22a6 Author: Edzer Pebesma <[email protected]> Date: Wed Nov 27 14:42:29 2013 +0100 Merge branch 'master' of github.com:edzer/spacetime commit afcf4db3c0c52e453028551ffddaec428a3c2c7e Author: Edzer Pebesma <[email protected]> Date: Wed Nov 27 14:41:30 2013 +0100 normalize function for cyclic time (hour, weekday) commit 6bd22a6d57f6703b6b0bf2aa0ddb7b6cb8b12226 Merge: e534d16 dc56ad4 Author: Edzer Pebesma <[email protected]> Date: Tue Nov 26 13:15:36 2013 -0800 Merge pull request #13 from k2sk8s/master Fix: Make aspect ratio work for non lat/lon data commit dc56ad43a969624154626c415d829f0c777065f8 Merge: fa19c87 e534d16 Author: Bene Luks <[email protected]> Date: Tue Nov 26 22:11:00 2013 +0100 Merge remote-tracking branch 'upstream/master' commit fa19c87665450a438700823148de103e4980c9b1 Author: Bene Luks <[email protected]> Date: Tue Nov 26 22:10:24 2013 +0100 Fix: Make aspect ratio work for non lat/lon data. commit e534d16280e2314ff15cedf98a86096b6e1a446d Merge: e05dfa5 29ed800 Author: Edzer Pebesma <[email protected]> Date: Tue Nov 26 08:20:30 2013 -0800 Merge pull request #12 from k2sk8s/master Updated stcube methods to use a sensible aspect ratio and normalized tim... commit 29ed800be8a45275418d56709c4bf52d08b3c962 Author: Bene Luks <[email protected]> Date: Tue Nov 26 16:19:55 2013 +0100 Updated stcube methods to use a sensible aspect ratio and normalized time values. commit e05dfa5ca8452575ca7588dc4c6a0b2c3415ff55 Author: Edzer Pebesma <[email protected]> Date: Sat Nov 23 00:25:07 2013 +0100 add stcube demo, merge Benedikt Klus' stcube work moved rgl and OpenStreetMap to Suggests: commit 326c165fddbfe149d47feb2543615cc1fba4ff0d Merge: 33dd041 481a575 Author: Edzer Pebesma <[email protected]> Date: Sat Nov 23 00:24:26 2013 +0100 Merge branch 'master' of https://github.com/k2sk8s/spacetime Conflicts: DESCRIPTION commit 33dd0414067c56e6d04c29fc3688c8114a0a9cd9 Author: Edzer Pebesma <[email protected]> Date: Fri Nov 22 23:59:27 2013 +0100 update Suggests: list commit 481a5753cccc4f2ed5fa290125b0b69f2d26948e Author: Bene Luks <[email protected]> Date: Fri Nov 22 22:04:44 2013 +0100 Added stcube methods. commit 3335b43065e878107063160da93082e35b830c95 Merge: 5a1e1c4 8deb983 Author: Benedikt Gräler <[email protected]> Date: Tue Nov 19 01:32:11 2013 -0800 Merge pull request #1 from edzer/master pull from Edzer commit 8deb98368d305ebe606d2cc0b341ed834d77152f Author: Edzer Pebesma <[email protected]> Date: Mon Nov 18 11:42:51 2013 +0100 update date commit 9bb8904ee6619c5c6ae1a500d719b6d5ebe68b75 Author: Edzer Pebesma <[email protected]> Date: Fri Nov 15 15:05:35 2013 +0100 add example, refresh example test output commit cca40266a461bcb5a5afd9d3ed3d65142d334f53 Author: Bene Luks <[email protected]> Date: Fri Nov 15 00:50:10 2013 +0100 Updated selection methods. commit 46819c20bd76991689abc65b2038f09366891c21 Merge: f3ef5c6 5d69399 Author: Bene Luks <[email protected]> Date: Thu Nov 14 22:48:24 2013 +0100 Merge remote-tracking branch 'upstream/master' commit f3ef5c693dd8c145823c181501e779059733eaca Author: Bene Luks <[email protected]> Date: Thu Nov 14 22:48:05 2013 +0100 Added [[, [[<-, $ and $<- methods. commit 5d69399de5e334d9eb64578e14bd8a875bc6cfb9 Author: Edzer Pebesma <[email protected]> Date: Thu Nov 14 13:17:01 2013 +0100 improve NA time warning commit 09142041049dccdacc773f76d20b6f28995a4c54 Author: Bene Luks <[email protected]> Date: Wed Nov 13 16:36:09 2013 +0100 Simplified code. commit 92e5eff84aa0663961665d0e6b3a7350d7a06ee5 Author: Bene Luks <[email protected]> Date: Wed Nov 13 16:26:04 2013 +0100 generalize() now correctly checks the number of passed arguments. Added documentation. Fixed indentation. commit 5f31c3f72610a891a4c068ee34d52bc851950199 Author: Edzer Pebesma <[email protected]> Date: Sat Nov 9 20:59:47 2013 +0100 update author list; tidy generalize commit 5a1e1c46fa5bf458f4bb831cc189c0cf16fdaebb Author: Benedikt Gräler <[email protected]> Date: Fri Nov 8 09:24:39 2013 +0100 - STSDF is now plotted with plot.STSDF - added coercion to STIDF for the call of stplot with STSDF commit 7ffeecb36ff614a0e55ba71f501ce139f8e3aefc Author: Edzer Pebesma <[email protected]> Date: Fri Nov 8 00:18:59 2013 +0100 simplify generalize, pass ... to FUN, update man commit 4ca559402f47c87bea7fda340b399df4c2800010 Author: Edzer Pebesma <[email protected]> Date: Wed Nov 6 20:30:08 2013 +0100 added coerce to Spatial, changed dim names commit 2157dab93e358fed7ecd43c5909beee4d91016c4 Author: Bene Luks <[email protected]> Date: Tue Nov 5 22:36:37 2013 +0100 Updated generalize method to consider all segments for aggregation. commit afe4626fe82797957a10bf8a062b9e6d04d57bc7 Author: Bene Luks <[email protected]> Date: Tue Oct 29 00:26:04 2013 +0100 Added 'toPoints' argument. commit 7452d39fc447035b08ebfa40515d5120759298ef Author: Bene Luks <[email protected]> Date: Mon Oct 28 23:25:51 2013 +0100 Updated 'generalize' methods to allow for simplifying the given geometry. commit 2666d7a3a9237b314cfe334c65da18ba0c8e074c Author: Bene Luks <[email protected]> Date: Mon Oct 28 21:35:10 2013 +0100 Updated signature of 'generalize' methods to improve code maintainability. Added further regression tests. commit 3dc5dd2c333400067e1987422021777eab92b774 Author: Bene Luks <[email protected]> Date: Mon Oct 28 20:18:58 2013 +0100 Updated 'generalize' methods to allow for generalizations over a predefined segment length. commit 454f7c9df13bb0ba656edf28dff928cc1dfdc7f4 Author: Bene Luks <[email protected]> Date: Mon Oct 28 19:53:38 2013 +0100 Updated 'generalize' methods to allow for generalizations over distance. commit 7e4b418e8974b160fd03236ff2718bfb83e61f96 Author: Bene Luks <[email protected]> Date: Mon Oct 28 12:54:54 2013 +0100 Added more 'generalize' methods. Added documentation to make 'R CMD check' run clean. Added regression tests. commit c28edf0d697eb66487960672445846e529687571 Author: Bene Luks <[email protected]> Date: Sun Oct 27 21:39:59 2013 +0100 Added generalize method. commit 3cc6f9bcbb53f5f70462571c9b6bb5e4d1e33189 Author: Edzer Pebesma <[email protected]> Date: Sun Oct 27 00:14:35 2013 +0200 add stbox method, set back bbox, correct aggregate stbox methods now give the space and time ranges as a data.frame; bbox gives the sp-compatible spatial range matrix. aggregate with only a Spatial argument can do aggregation over all time, or spatial aggregation by time. STF and STF do it default per time slice (as in the sto vignette), other classes will group all, within a spatial feature, over time. commit 8e647893f255b5619ab27062abe0f84182f21265 Merge: 01955e2 8676eb6 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 17:50:47 2013 +0200 Merge branch 'master' of github.com:edzer/spacetime commit 01955e29715196ed3d27466f2d0a8821ce732f1e Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 17:48:02 2013 +0200 aggregation ST by Spatial now aggregates over time aggregation used to be by time slice too, making it only useful for STFDF objects, and actually doing an aggregate(ST,ST) where the second has identical time resolution as the first. The old behaviour is retained by aggregate(STFDF, Spatial, keepTime = TRUE) which is NOT the default, now (so I need to adapt sto.Rnw too). commit 8676eb60a7a3a375d36ce34ab35a651c14a6ade9 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 15:12:12 2013 +0200 Update contribute.md commit 4377bf807ea214cb11a57321fd64efcf49134b90 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 15:11:15 2013 +0200 Update contribute.md commit 83e143f9e5ee00f5f832b67c95636682592eb8e0 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 15:10:11 2013 +0200 Update contribute.md commit 4ab6932b640a3105f571cef5adf7f7be97301063 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 14:47:44 2013 +0200 Update contribute.md commit e8d806ce929736b49677b2d07ce5bf3e8570f380 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 14:43:19 2013 +0200 Update contribute.md commit 5d884324b54a633e6c828a8138dd1bc2ab4b7f91 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 14:24:24 2013 +0200 add contribute file, and .Rbuildignore commit 3519ba44ed62877d90e73565b7773c444ad66c2f Author: Edzer Pebesma <[email protected]> Date: Fri Oct 25 13:47:39 2013 +0200 coerce SpatialGrid into SpatialPixels in aggregate commit bb06885306275037bb1b7af9b9e8296c1e4afb9f Author: Edzer Pebesma <[email protected]> Date: Wed Oct 23 00:28:57 2013 +0200 update date and role commit 6a14c1f2073c674873a08125ad5a4568dec13e16 Merge: b81353c 423c6aa Author: edzer <[email protected]> Date: Tue Oct 22 08:01:02 2013 -0700 Merge pull request #5 from k2sk8s/master Added aggregate and coordinates methods Note that when coercing to SpatialPointsDataFrame, aggregate methods will not know how to deal with time (temporal aggregation, or spatio-temporal aggregation). commit 423c6aa18caf55f2470ab7d31f42a2e2d7c85d42 Author: Bene Luks <[email protected]> Date: Tue Oct 22 14:43:58 2013 +0200 Added coordinates methods. commit 2bfa55bccce4aa28ec455c3a37e01e0d265bedaf Author: Bene Luks <[email protected]> Date: Tue Oct 22 12:38:49 2013 +0200 Added aggregate methods. commit b81353ce09536de61d7406ea7be4efa53cb6f327 Merge: 0a09988 bdfa19c Author: edzer <[email protected]> Date: Mon Oct 21 06:08:27 2013 -0700 Merge pull request #4 from k2sk8s/master Added summary methods. commit bdfa19c34d61cae88af7981dc3d5ebc9c18bb035 Author: Bene Luks <[email protected]> Date: Mon Oct 21 14:40:53 2013 +0200 Added summary methods. commit 0a09988dde5d695eb0b465c3414181aae7d7a6da Author: Edzer Pebesma <[email protected]> Date: Thu Oct 17 07:56:10 2013 +0200 fix random seed to obtain constant output from test commit 2448f15bac06db0f0c08840c5eb4b7b4244e30b4 Author: Edzer Pebesma <[email protected]> Date: Wed Oct 16 23:58:22 2013 +0200 add tracks test output copied from spacetime.Rcheck/tests, this file contains the reference test output (and should, after checking, be replaced again when the tests are changed or extended) commit 2f880211cbc00eaec98ea027577b54d247b3a204 Merge: 37905ec cd2011e Author: edzer <[email protected]> Date: Wed Oct 16 14:38:31 2013 -0700 Merge pull request #3 from k2sk8s/master Added first regression tests, among others commit cd2011e9d78acf6d3e59bfbe79c6f02ec200c068 Merge: dedfce8 37905ec Author: Bene Luks <[email protected]> Date: Wed Oct 16 22:14:07 2013 +0200 Merged upstream. Resolved merge conflicts. commit dedfce84ccf66b03a8576c8e85223abc0708b9d1 Author: Bene Luks <[email protected]> Date: Wed Oct 16 21:10:58 2013 +0200 Added first regression tests. More to come. commit 3d4deec02ab61e0e7dadf27c9b66767384a0a7d6 Author: Bene Luks <[email protected]> Date: Wed Oct 16 21:01:16 2013 +0200 Fixed selection bug. Added comments. commit 4065f03a809006734214597d306cbe93f4d367d3 Author: Bene Luks <[email protected]> Date: Wed Oct 16 16:18:19 2013 +0200 Wrapped comments at 80 characters. commit 8e1628d4358eb718872021e1af85119bd806418c Author: Bene Luks <[email protected]> Date: Wed Oct 16 16:08:57 2013 +0200 Removed redundant coercion method. Wrapped comments at 80 characters. commit 37905ecf63c55ec46607b2c9c3ccbd4ce3550a7a Author: Edzer Pebesma <[email protected]> Date: Tue Oct 15 19:00:07 2013 +0200 add rbind for STIDF, sp dependency on rev 1478 created dependency on sp revision 1478 (r-forge) that cleans up the CRS checking in validity functions of Tracks and TracksCollection. Removed the ::: dependencies. added an alias to over.Rd, to make R CMD check clean. commit a249142559134940ce878e2bf98cb79afbc21d80 Merge: 0b35b47 0ef1509 Author: Edzer Pebesma <[email protected]> Date: Tue Oct 15 16:01:37 2013 +0200 Merge branch 'master' of https://github.com/k2sk8s/spacetime commit d7b13507d9e5f98d10d3d32f746c230f1919bd08 Author: Bene Luks <[email protected]> Date: Tue Oct 15 15:43:11 2013 +0200 Removed redundant coercion method. commit 4b1c8ec6b87c57e6e10e51fd9fb6a859f69bdd0d Merge: 0ef1509 0b35b47 Author: Bene Luks <[email protected]> Date: Tue Oct 15 14:18:49 2013 +0200 Merge remote-tracking branch 'upstream/master' commit 0ef1509941d09ae2a4d88d47b19ceadac9d8322e Author: Bene Luks <[email protected]> Date: Tue Oct 15 14:00:15 2013 +0200 Added coercion methods to allow for converting trajectories to SpatialPointsDataFrame. commit 2e27ba0b23d19db0ccc837f8e58ed3673fc3f05b Author: Bene Luks <[email protected]> Date: Tue Oct 15 13:40:25 2013 +0200 Added coercion methods to allow for converting trajectories to spatio-temporal points. commit bccfa1d231ac2239d534e28639229d7e3f2cee7a Author: Bene Luks <[email protected]> Date: Tue Oct 15 12:49:20 2013 +0200 Added coercion methods to allow for converting trajectories to time series. Code cleanups. commit 38e5d8c263d809819044eb6ec9fe0ff9ef2996df Author: Bene Luks <[email protected]> Date: Tue Oct 15 11:09:19 2013 +0200 Added over method for Track objects. Fixed coercion method. commit 74112f86fec196f294e7f57a637acbf0cf88592e Author: Bene Luks <[email protected]> Date: Tue Oct 15 10:45:42 2013 +0200 Added rgeos as a required dependency to make any over methods for trajectory classes work flawlessly. commit 0b35b472cc0d9bb09cdcca31b5119f9bf7ab18ae Author: Edzer Pebesma <[email protected]> Date: Tue Oct 15 09:46:55 2013 +0200 update minor version, date, URL, contributor commit a32e458c4891247a2c711a729f53b662ae843da2 Author: Bene Luks <[email protected]> Date: Mon Oct 14 16:39:33 2013 +0200 Fixed selection method to correctly address selections such as Tr[list(integer(0), 2)]. Code cleanups. commit 5f1a147b355593a1e3eb36231c1e46d852e1579e Author: Edzer Pebesma <[email protected]> Date: Sun Oct 13 18:56:15 2013 +0200 clean up for R CMD check commit c41946be5ec4687700929ce5a94569db4edd212a Author: Edzer Pebesma <[email protected]> Date: Sun Oct 13 18:27:11 2013 +0200 added c, stack and unstack methods, and example code commit ef16d17c182c911f9e8e5be2ac0b2723fe09d840 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 11 23:02:49 2013 +0200 R CMD check is clean again commit aa097ed255fb4b238f323cfd2d33cbcf4f8ad6fc Author: Edzer Pebesma <[email protected]> Date: Fri Oct 11 17:18:22 2013 +0200 added proj4string and coerce to SpatialLines* methods commit fbb085878bf68cffcba0dbe7166b70028aae0040 Author: Edzer Pebesma <[email protected]> Date: Thu Oct 10 12:06:38 2013 +0200 tested list selection; updated over signatures. commit e2c4b284f17de55dd4ebfd74ab0ea3360458f483 Author: Bene Luks <[email protected]> Date: Wed Oct 9 20:29:32 2013 +0200 Added coercion methods. Arbitrary selection of ID/Track combinations are now possible. commit 3e145a0e9d93e7a70a539a46b439df572a114e30 Author: Edzer Pebesma <[email protected]> Date: Fri Oct 4 14:42:43 2013 +0200 corrected plot x/ylim values, added default names commit 1be33fdbed6560773c79f376cdbb37e72fab3620 Author: Edzer Pebesma <[email protected]> Date: Wed Oct 2 16:45:04 2013 +0200 added Track IDs; corrected direction calculations commit 7988d6db57a42a0970668e4a9c95ccc4a5aa7d22 Author: Edzer Pebesma <[email protected]> Date: Tue Oct 1 19:57:57 2013 +0200 added sp.layout to spplot for TracksCollection commit 109b44134f74dddcd19814b57ac92cb6ea8404c5 Author: Edzer Pebesma <[email protected]> Date: Mon Sep 30 23:35:09 2013 +0200 added segments class; added simple [ selection methods commit 4f142a943853cf29792cc3c0c9b8730e3d616b02 Author: Edzer Pebesma <[email protected]> Date: Fri Sep 27 18:00:32 2013 +0200 added dim methods, improved stplot. commit 7c490847192267ab1d87c4b1c5358361efc2b8b9 Author: Edzer Pebesma <[email protected]> Date: Fri Sep 27 16:49:23 2013 +0200 plotting trajectories, both stplot and plot; example in doc. commit 20a55bb3d49442e1d623cc74906a28617a4b79ad Author: Edzer Pebesma <[email protected]> Date: Thu Sep 26 23:16:46 2013 +0200 more stplot work for TracksCollection objects, xx2seg conversions commit 2b8b7346691799c8ca7fe10d2233719cce1762d1 Author: Edzer Pebesma <[email protected]> Date: Thu Sep 26 17:34:53 2013 +0200 more on trajectories; some plotting fn commit 3bbfc938653b676a2c965addc3de1ec769034932 Author: Edzer Pebesma <[email protected]> Date: Thu Sep 26 16:11:07 2013 +0200 trajectory work commit b4ebdaeb9b351a5dd974f482a35d06660d782607 Author: Edzer Pebesma <[email protected]> Date: Wed Sep 25 20:58:26 2013 +0200 work on Tracks commit 1e1c9260af2f508d5fe15f1732ad84b5b928faaf Author: Edzer Pebesma <[email protected]> Date: Wed Sep 25 18:03:12 2013 +0200 removed svn; added Tracks files commit bb3fc2124386914751e3bf84ab570948cc9ba889 Author: edzer <[email protected]> Date: Wed Sep 25 17:20:51 2013 +0200 added urls commit b642fddf8c720b51784d2b6c1d16fc156f634696 Merge: 7d8ee87 95e1e2a Author: Edzer Pebesma <[email protected]> Date: Wed Sep 25 17:11:43 2013 +0200 Merge github.com:edzer/spacetime commit 7d8ee87af202e98a80665798df930188fb187bf1 Author: Edzer Pebesma <[email protected]> Date: Wed Sep 25 16:04:57 2013 +0200 initial commit commit eba0f2d720ce7053d97a728fe1b7844a8f25874d Author: Edzer Pebesma <[email protected]> Date: Wed Sep 25 16:03:17 2013 +0200 first commit commit 95e1e2aa46c55d7dfead687f93877b1d62d939bb Author: edzer <[email protected]> Date: Wed Sep 25 07:02:03 2013 -0700 Initial commit 2013-09-20 15:47 ben_graeler * spacetime/R/STSDF-methods.R: - fixed minor issue for single points in space and time in coordinates method 2013-09-20 12:34 edzer * spacetime/R/STFDF-methods.R, spacetime/R/STIDF-methods.R, spacetime/R/STSDF-methods.R: added [ methods for STF, STS, STI; needs some testing 2013-09-19 09:33 jinlong * trajectories/R/aggregate.R, trajectories/R/crop.R, trajectories/data/geolife_sample.RData, trajectories/inst/geolife_reader.R, trajectories/man/geolife_sample.Rd, trajectories/vignettes/demo.Rmd: - Revised crop(); - Revised aggregate(); - Updated geolife_sample.RData - Added demo.Rmd 2013-09-18 06:53 jinlong * trajectories/R/summary.R, trajectories/data/geolife_sample.RData, trajectories/inst/geolife_reader.R, trajectories/man/geolife_sample.Rd, trajectories/tests/crop_and_plot_demo.R, trajectories/tests/crop_demo.Rout.save: - summary() function updated - geolife_reader.R updated with the computation of trajectory stats - geolife_sample dataset updated 2013-09-16 07:50 edzer * trajectories/R/crop.R, trajectories/tests/aggregate_demo.Rout.save: take right coordinates 2013-09-16 07:46 edzer * trajectories/R/crop.R: right coordinates 2013-09-16 07:40 edzer * trajectories/tests/STItoSTTDFdemo2.Rout.save: test output 2013-09-16 06:59 jinlong * trajectories/tests/crop_and_plot_demo.R: - updated the data for demo 2013-09-16 05:41 jinlong * trajectories/data/geolife_sample.RData, trajectories/inst/geolife_reader.R, trajectories/man/geolife_sample.Rd, trajectories/tests/crop_and_plot_demo.R, trajectories/tests/crop_and_plot_demo.Rout.save, trajectories/tests/geolife_reader.R, trajectories/vignettes, trajectories/vignettes/sttdf.png, trajectories/vignettes/sttdf_cropped_w_pol.png, trajectories/vignettes/sttdf_w_pol.png: - geolife sample dataset added. 2013-09-16 05:07 jinlong * trajectories/NAMESPACE, trajectories/R/STItoSTTDF.R, trajectories/R/crop.R, trajectories/notes, trajectories/tests/STItoSTTDFdemo.R, trajectories/tests/STItoSTTDFdemo2.R, trajectories/tests/STItoSTTDFdemo2.Rout.save, trajectories/tests/STTDF_selection.R, trajectories/tests/aggregate_demo.R, trajectories/tests/aggregate_demo.Rout.save, trajectories/tests/crop_and_plot_demo.R, trajectories/tests/crop_and_plot_demo.Rout.save, trajectories/tests/crop_demo.R, trajectories/tests/crop_demo.Rout.save, trajectories/tests/cut.STTDF.SpatialPolygons.R, trajectories/tests/geolife_reader.R, trajectories/tests/over.STTDF.SpatialPolygons.R, trajectories/tests/read.R, trajectories/tests/summary_and_plot_demo.R, trajectories/tests/traj_sample.R, trajectories/tests/traj_stats.R: - output files added - tests files corrected - bug fixed in crop - geolife_reader.R revised - directory cleaned 2013-09-11 10:58 edzer * spacetime/DESCRIPTION: version bump 2013-09-10 13:55 edzer * spacetime/NAMESPACE, spacetime/R/ST-methods.R, spacetime/R/coerce.R: setMethod geometry export geometry and aggregate corrected coerce STIDF->STTDF 2013-09-09 08:37 edzer * spacetime/vignettes/stpg.Rnw: back to 2.14.x compatibility 2013-09-06 07:41 edzer * trajectories/NAMESPACE: exportMethod plot 2013-09-06 07:27 edzer * trajectories/tests/STItoSTTDFdemo.Rout.save: redid test output 2013-09-06 07:24 edzer * trajectories/tests/STItoSTTDFdemo.R: fixed random number generator seed 2013-09-06 07:22 edzer * spacetime/DESCRIPTION, trajectories/tests/STItoSTTDFdemo.Rout.save: added test output 2013-09-06 07:17 edzer * trajectories/tests/STItoSTTDFdemo.R, trajectories/tests/crop_demo.R: added libraries 2013-09-06 07:12 edzer * trajectories/test, trajectories/tests: directory name change 2013-09-06 06:59 edzer * trajectories/man/summary.Rd: addressed the NOTE by R CMD check 2013-09-06 06:49 jinlong * trajectories/R/aggregate.R, trajectories/test/merge_not_working.R, trajectories/test/sample_not_working.R: - Fix bug in aggregate.R 2013-09-05 09:28 edzer * spacetime/DESCRIPTION, spacetime/R/Class-ST.R, spacetime/R/Class-STFDF.R, spacetime/R/Class-STIDF.R, spacetime/R/Class-STSDF.R, spacetime/R/Class-STTDF.R: removed slots = c(...) notation, to keep R 2.14 compatibility. 2013-09-03 09:50 edzer * spacetime/DESCRIPTION: version downgrade 2013-09-03 09:44 edzer * spacetime/DESCRIPTION, spacetime/man/eof.Rd, spacetime/man/stinteraction.Rd, spacetime/tests/Examples/spacetime-Ex.Rout.save: issues caused by gstat 1.0-17 2013-09-03 07:19 jinlong * trajectories/NAMESPACE, trajectories/R/aggregate.R, trajectories/R/crop.R, trajectories/R/cut.STTDF.SpatialPolygons.R, trajectories/man/aggregate.Rd, trajectories/man/cut.STTDF.SpatialPolygons.Rd, trajectories/test/aggregate_demo.R, trajectories/test/crop_demo.R, trajectories/test/summary_and_plot_demo.R: - Add aggregate() function; - Rewrite crop() function; - Delete cut.STTDF.SpatialPolygons() function; - Modify the demo for aggregate(), summary(), plot(), and crop() 2013-09-02 13:06 edzer * spacetime/.Rbuildignore, spacetime/DESCRIPTION, spacetime/NAMESPACE, spacetime/R/aggregate.R, spacetime/man/ST-class.Rd, spacetime/man/STFDF-class.Rd, spacetime/man/STSDF-class.Rd, spacetime/man/STTDF-class.Rd, spacetime/man/fires.Rd, spacetime/man/na.Rd, spacetime/man/over.Rd, spacetime/man/unstack.Rd, spacetime/tests/Examples/spacetime-Ex.Rout.save, spacetime/tests/basic.R, spacetime/tests/basic.Rout.save, spacetime/tests/over.R, spacetime/tests/over.Rout.save, spacetime/tests/rw.R, spacetime/tests/stconstruct.R, spacetime/tests/stconstruct.Rout.save, spacetime/tests/traj.Rout.save, spacetime/tests/wind.R, spacetime/tests/wind.Rout.save, spacetime/vignettes/jss816.Rnw, spacetime/vignettes/sto.Rnw: sp is now imported, not loaded; adjusted all examples and demos. 2013-08-30 19:46 edzer * spacetime/DESCRIPTION: addressed CRAN NOTE: removed duplicates between Suggests: and Imports: 2013-08-13 06:07 jinlong * trajectories/NAMESPACE, trajectories/R/crop.R, trajectories/R/over.STTDF.STTDF.R, trajectories/R/over.STTDF.SpatialPolygons.R, trajectories/R/plot.R, trajectories/R/summary.R, trajectories/man/crop.Rd, trajectories/man/over.STTDF.STTDF.Rd, trajectories/man/over.STTDF.SpatialPolygons.Rd, trajectories/notes, trajectories/test/crop_demo.R, trajectories/test/read.R, trajectories/test/summary_and_plot_demo.R: - crop() added - summary() fixed with invalid data attributes 2013-08-05 07:40 jinlong * trajectories/demo/00Index, trajectories/demo/STItoSTTDFdemo.R, trajectories/demo/STItoSTTDFdemo2.R, trajectories/demo/STTDF_selection.R, trajectories/demo/cut.STTDF.SpatialPolygons.R, trajectories/demo/geolife_reader.R, trajectories/demo/over.STTDF.SpatialPolygons.R, trajectories/demo/read.R, trajectories/demo/traj_sample.R, trajectories/demo/traj_stats.R, trajectories/notes, trajectories/test, trajectories/test/STItoSTTDFdemo.R, trajectories/test/STItoSTTDFdemo2.R, trajectories/test/STTDF_selection.R, trajectories/test/cut.STTDF.SpatialPolygons.R, trajectories/test/geolife_reader.R, trajectories/test/over.STTDF.SpatialPolygons.R, trajectories/test/read.R, trajectories/test/traj_sample.R, trajectories/test/traj_stats.R: - Move all files in demo folder into test folder; - Update the note; 2013-08-05 07:11 jinlong * trajectories/R/STItoSpatialLines.R, trajectories/R/plot.R, trajectories/R/summary.R, trajectories/man/STItoSpatialLines.Rd, trajectories/man/plot.Rd, trajectories/man/summary.Rd: - Missing files added 2013-08-05 07:11 jinlong * trajectories/NAMESPACE, trajectories/R/cut.STTDF.SpatialPolygons.R, trajectories/notes: - Added plot.R, summary.R, STItoSpatialLines.R - Modified cut.STTDF.SpatialPolygons.R and STI to SpatialLines.R 2013-07-23 13:10 edzer * trajectories/man/traj_sample.Rd: alias 2013-07-23 12:55 jinlong * trajectories/DESCRIPTION, trajectories/NAMESPACE, trajectories/R/STItoSTTDF.R, trajectories/R/STTDFtoSpatialLines.R, trajectories/R/cut.STTDF.SpatialPolygons.R, trajectories/R/over.STTDF.SpatialPolygons.R, trajectories/demo/00Index, trajectories/demo/STItoSTTDFdemo2.R, trajectories/demo/cut.STTDF.SpatialPolygons.R, trajectories/demo/traj_sample.R, trajectories/man/STTDFtoSpatialLines.Rd, trajectories/man/cut.STTDF.SpatialPolygons.Rd, trajectories/man/over.STTDF.SpatialPolygons.Rd: - cut.STTDF.SpatialPolygons.R added - STTDFtoSpatialLines.R added 2013-07-21 16:22 jinlong * trajectories/NAMESPACE, trajectories/R/over.STTDF.SpatialPolygons.R, trajectories/data, trajectories/data/traj_sample.RData, trajectories/demo/00Index, trajectories/demo/over.STTDF.SpatialPolygons.R, trajectories/demo/traj_sample.R, trajectories/man/over.STTDF.STTDF.Rd, trajectories/man/over.STTDF.SpatialPolygons.Rd, trajectories/man/traj_sample.Rd, trajectories/notes: - New dataset - over.STTDF.SpatialPolygons 2013-07-16 06:54 jinlong * trajectories/DESCRIPTION, trajectories/NAMESPACE, trajectories/R/STItoSTTDF.R, trajectories/R/over.STTDF.STTDF.R, trajectories/demo/STItoSTTDFdemo.R, trajectories/demo/geolife_reader.R, trajectories/inst, trajectories/man/over.STTDF.STTDF.Rd, trajectories/notes: - over.STTDF.STTDF.R added 2013-07-14 07:26 jinlong * trajectories/NAMESPACE, trajectories/demo/STTDF_selection.R: - Clean package check with one warning message 2013-07-13 11:54 edzer * spacetime/vignettes/stpg.Rnw: set eval=FALSE again; updated the off-cran eval=TRUE document 2013-07-13 09:18 edzer * spacetime/vignettes/stpg.Rnw: updated vignette 2013-07-13 07:58 jinlong * trajectories/demo/00Index, trajectories/demo/STItoSTTDFdemo.R, trajectories/demo/sttdf_computation.R, trajectories/man/STItoSTTDF.Rd: - Updated the description in demo/00Index - Added comments in STItoSTTDFdemo.R 2013-07-12 09:19 edzer * trajectories/DESCRIPTION, trajectories/NAMESPACE, trajectories/demo/00Index, trajectories/man/STItoSTTDF.Rd: tidy to make check clean; import rgdal to support project(). 2013-07-12 07:56 jinlong * trajectories/DESCRIPTION, trajectories/NAMESPACE, trajectories/R/STItoSTTDF.R, trajectories/man/STItoSTTDF.Rd: - Updated STItoSTTDF.Rd 2013-07-12 07:23 jinlong * trajectories/DESCRIPTION, trajectories/NAMESPACE, trajectories/R/STItoSTTDF.R, trajectories/man/STItoSTTDF.Rd: - Fixed multiple bugs that preventing building the package 2013-07-11 06:23 jinlong * trajectories/NAMESPACE, trajectories/demo/STTDF_selection.R: - NAMESPACE updated - STTDF_selection.R temporarily disabled 2013-07-11 06:00 jinlong * trajectories/NAMESPACE, trajectories/R/STItoSTTDF.R, trajectories/demo/STItoSTTDF.R, trajectories/demo/STItoSTTDFdemo.R, trajectories/demo/geolife_reader.R, trajectories/man/STItoSTTDF.Rd, trajectories/notes: - notes updates - STItoSTTDF.R moved to R/ - geolife.R updated - NAMESPACE updated 2013-07-09 15:27 edzer * spacetime/DESCRIPTION, spacetime/R/Class-ST.R, spacetime/R/Class-STFDF.R, spacetime/R/Class-STIDF.R, spacetime/R/Class-STSDF.R, spacetime/R/Class-STTDF.R, spacetime/R/Class-xts.R, spacetime/R/coerce.R: changed "representation" into "contains" and "slots", as for R 3.0.0 recommendations; changed import order of xts and zoo.; changed setClass to setOldClass for S3 class registration. 2013-07-09 08:01 jinlong * trajectories/demo/STItoSTTDF.R, trajectories/demo/geolife_reader.R, trajectories/man/STItoSTTDF.Rd, trajectories/notes: - notes updated - multiple updated for the R scripts in demo directory 2013-07-09 06:44 jinlong * trajectories/demo/STItoSTTDF.R, trajectories/man/STItoSTTDF.Rd, trajectories/notes: - Updated on notes - Added STItoSTTDF.Rd 2013-07-08 07:41 jinlong * trajectories/demo/STItoSTTDF.R, trajectories/demo/geolife_reader.R, trajectories/demo/sttdf_computation.R, trajectories/notes: - STItoSTTDF.R added - geolife_reader.R added - STTDF_computation.R modified - notes updated
jperkin
pushed a commit
that referenced
this issue
Jun 17, 2015
There are three major issues with gcc5-aux on NetBSD 7.0 Beta. 1) The gold linker fails in the middle of the build with an "operation not permitted" error. I believe this is either an issue directory with NetBSD 7.0 beta (not seen on 6.99) or an issue with the binutils 2.25 from pkgsrc. It turns out that NetBSD 7.0 uses binutils 2.23 which is new enough. By removing the requirement for using pkgsrc binutils, it will build until it hits issue #2 which is ... 2) Fortran no longer builds on NetBSD 7.0. Something about an "old" version of locale symbol. Something changed with locales and gcc5's Fortran does not like it. The solution is to turn off fortran and objc options by default. This means only C, C++, and Ada languages are supported by default. Obviously this is not a "solution" but it will have to do for now. 3) The signal trampoline has changed. The pattern for the signal trampoline has been altered and now the NetBSD unwind support can't recognize the end of the stack. This causes all the stack overflow and stack check tests to fail. I didn't do anything here. It requires a lot of work with gdb to figure out what the new pattern looks like and I don't have any sort of time for that. Stack handling still works for NetBSD 5 and 6 though.
jperkin
pushed a commit
that referenced
this issue
Aug 17, 2015
------------------- 0.16 2015-07-28 05:55:58Z - no changes since trial release 0.15 2015-07-22 16:17:48Z (TRIAL RELEASE) - restore the prototype of hook_parser_setup() for the C interface - restore B::Hooks::Parser::Install::Files, lost since version 0.13 0.14 2015-07-22 02:16:31Z (TRIAL RELEASE) - fix segfaults on clang by defining PERL_NO_GET_CONTEXT (thanks, Vincent Pit! closes github #1, #2, RT#94463)
jperkin
pushed a commit
that referenced
this issue
Sep 1, 2015
2.5.1 * Fixed VC11 build (Jan Erhardt) * Fixed gh-issue #2: comparison of obsolete pointers in the header parser (xiaoyjy) * Fixed gh-issue #6: allow RFC1738 unsafe characters in query/fragment * Fixed gh-issue #7: crash with querystring and exception from error handler + SSL certinfo is available for libcurl >= 7.42 with gnutls (openssl has already been since 7.19.1) + Added "falsestart" SSL request option (available with libcurl >= 7.42 and darwinssl/NSS) + Added "service_name" and "proxy_service_name" request options for SPNEGO (available with libcurl >= 7.43) + Enabled "certinfo" transfer info on all supporting SSL backends (OpenSSL: libcurl v7.19.1, NSS: libcurl v7.34.0, GSKit: libcurl v7.39.0, GnuTLS: libcurl v7.42.0) 2.5.0 + Added RFC5988 (Web Linking) support to http\Params + Added http\Url::SANITIZE_PATH to default flags of http\Url::mod() * Fixed overly aggressive response caching to only consider 2xx cachable 2.5.0RC1 * Added RFC5988 (Web Linking) support to http\Params * Added http\Url::SANITIZE_PATH to default flags of http\Url::mod() * Fixed overly aggressive response chaching to only consider 2xx cachable
jperkin
pushed a commit
that referenced
this issue
Sep 1, 2015
Git v2.5.1 Release Notes ======================== Fixes since v2.5 ---------------- * Running an aliased command from a subdirectory when the .git thing in the working tree is a gitfile pointing elsewhere did not work. * Often a fast-import stream builds a new commit on top of the previous commit it built, and it often unconditionally emits a "from" command to specify the first parent, which can be omitted in such a case. This caused fast-import to forget the tree of the previous commit and then re-read it from scratch, which was inefficient. Optimize for this common case. * The "rev-parse --parseopt" mode parsed the option specification and the argument hint in a strange way to allow '=' and other special characters in the option name while forbidding them from the argument hint. This made it impossible to define an option like "--pair <key>=<value>" with "pair=key=value" specification, which instead would have defined a "--pair=key <value>" option. * A "rebase" replays changes of the local branch on top of something else, as such they are placed in stage #3 and referred to as "theirs", while the changes in the new base, typically a foreign work, are placed in stage #2 and referred to as "ours". Clarify the "checkout --ours/--theirs". * An experimental "untracked cache" feature used uname(2) in a slightly unportable way. * "sparse checkout" misbehaved for a path that is excluded from the checkout when switching between branches that differ at the path. * The low-level "git send-pack" did not honor 'user.signingkey' configuration variable when sending a signed-push. * An attempt to delete a ref by pushing into a repository whose HEAD symbolic reference points at an unborn branch that cannot be created due to ref D/F conflict (e.g. refs/heads/a/b exists, HEAD points at refs/heads/a) failed. * "git subtree" (in contrib/) depended on "git log" output to be stable, which was a no-no. Apply a workaround to force a particular date format. * "git clone $URL" in recent releases of Git contains a regression in the code that invents a new repository name incorrectly based on the $URL. This has been corrected. (merge db2e220 jk/guess-repo-name-regression-fix later to maint). * Running tests with the "-x" option to make them verbose had some unpleasant interactions with other features of the test suite. (merge 9b5fe78 jk/test-with-x later to maint). * "git pull" in recent releases of Git has a regression in the code that allows custom path to the --upload-pack=<program>. This has been corrected. * pipe() emulation used in Git for Windows looked at a wrong variable when checking for an error from an _open_osfhandle() call. Also contains typofixes, documentation updates and trivial code clean-ups.
jperkin
pushed a commit
that referenced
this issue
Oct 8, 2015
Changelog: Git v2.6.1 Release Notes ======================== Fixes since v2.6 ---------------- * xdiff code we use to generate diffs is not prepared to handle extremely large files. It uses "int" in many places, which can overflow if we have a very large number of lines or even bytes in our input files, for example. Cap the input size to soemwhere around 1GB for now. * Some protocols (like git-remote-ext) can execute arbitrary code found in the URL. The URLs that submodules use may come from arbitrary sources (e.g., .gitmodules files in a remote repository), and can hurt those who blindly enable recursive fetch. Restrict the allowed protocols to well known and safe ones. Git 2.6 Release Notes ===================== Updates since v2.5 ------------------ UI, Workflows & Features * An asterisk as a substring (as opposed to the entirety) of a path component for both side of a refspec, e.g. "refs/heads/o*:refs/remotes/heads/i*", is now allowed. * New userdiff pattern definition for fountain screenwriting markup format has been added. * "git log" and friends learned a new "--date=format:..." option to format timestamps using system's strftime(3). * "git fast-import" learned to respond to the get-mark command via its cat-blob-fd interface. * "git rebase -i" learned "drop commit-object-name subject" command as another way to skip replaying of a commit. * A new configuration variable can enable "--follow" automatically when "git log" is run with one pathspec argument. * "git status" learned to show a more detailed information regarding the "rebase -i" session in progress. * "git cat-file" learned "--batch-all-objects" option to enumerate all available objects in the repository more quickly than "rev-list --all --objects" (the output includes unreachable objects, though). * "git fsck" learned to ignore errors on a set of known-to-be-bad objects, and also allows the warning levels of various kinds of non-critical breakages to be tweaked. * "git rebase -i"'s list of todo is made configurable. * "git send-email" now performs alias-expansion on names that are given via --cccmd, etc. * An environment variable GIT_REPLACE_REF_BASE tells Git to look into refs hierarchy other than refs/replace/ for the object replacement data. * Allow untracked cache (experimental) to be used when sparse checkout (experimental) is also in use. * "git pull --rebase" has been taught to pay attention to rebase.autostash configuration. * The command-line completion script (in contrib/) has been updated. * A negative !ref entry in multi-value transfer.hideRefs configuration can be used to say "don't hide this one". * After "git am" without "-3" stops, running "git am -3" pays attention to "-3" only for the patch that caused the original invocation to stop. * When linked worktree is used, simultaneous "notes merge" instances for the same ref in refs/notes/* are prevented from stomping on each other. * "git send-email" learned a new option --smtp-auth to limit the SMTP AUTH mechanisms to be used to a subset of what the system library supports. * A new configuration variable http.sslVersion can be used to specify what specific version of SSL/TLS to use to make a connection. * "git notes merge" can be told with "--strategy=<how>" option how to automatically handle conflicts; this can now be configured by setting notes.mergeStrategy configuration variable. * "git log --cc" did not show any patch, even though most of the time the user meant "git log --cc -p -m" to see patch output for commits with a single parent, and combined diff for merge commits. The command is taught to DWIM "--cc" (without "--raw" and other forms of output specification) to "--cc -p -m". * "git config --list" output was hard to parse when values consist of multiple lines. "--name-only" option is added to help this. * A handful of usability & cosmetic fixes to gitk and l10n updates. * A completely empty e-mail address <> is now allowed in the authors file used by git-svn, to match the way it accepts the output from authors-prog. Performance, Internal Implementation, Development Support etc. * In preparation for allowing different "backends" to store the refs in a way different from the traditional "one ref per file in $GIT_DIR or in a $GIT_DIR/packed-refs file" filesystem storage, direct filesystem access to ref-like things like CHERRY_PICK_HEAD from scripts and programs has been reduced. * Computation of untracked status indicator by bash prompt script (in contrib/) has been optimized. * Memory use reduction when commit-slab facility is used to annotate sparsely (which is not recommended in the first place). * Clean up refs API and make "git clone" less intimate with the implementation detail. * "git pull" was reimplemented in C. * The packet tracing machinery allows to capture an incoming pack data to a file for debugging. * Move machinery to parse human-readable scaled numbers like 1k, 4M, and 2G as an option parameter's value from pack-objects to parse-options API, to make it available to other codepaths. * "git verify-tag" and "git verify-commit" have been taught to share more code, and then learned to optionally show the verification message from the underlying GPG implementation. * Various enhancements around "git am" reading patches generated by foreign SCM have been made. * Ref listing by "git branch -l" and "git tag -l" commands has started to be rebuilt, based on the for-each-ref machinery. * The code to perform multi-tree merges has been taught to repopulate the cache-tree upon a successful merge into the index, so that subsequent "diff-index --cached" (hence "status") and "write-tree" (hence "commit") will go faster. The same logic in "git checkout" may now be removed, but that is a separate issue. * Tests that assume how reflogs are represented on the filesystem too much have been corrected. * "git am" has been rewritten in "C". * git_path() and mkpath() are handy helper functions but it is easy to misuse, as the callers need to be careful to keep the number of active results below 4. Their uses have been reduced. * The "lockfile" API has been rebuilt on top of a new "tempfile" API. * To prepare for allowing a different "ref" backend to be plugged in to the system, update_ref()/delete_ref() have been taught about ref-like things like MERGE_HEAD that are per-worktree (they will always be written to the filesystem inside $GIT_DIR). * The gitmodules API that is accessed from the C code learned to cache stuff lazily. Also contains various documentation updates and code clean-ups. Fixes since v2.5 ---------------- Unless otherwise noted, all the fixes since v2.5 in the maintenance track are contained in this release (see the maintenance releases' notes for details). * "git subtree" (in contrib/) depended on "git log" output to be stable, which was a no-no. Apply a workaround to force a particular date format. (merge e7aac44 da/subtree-date-confusion later to maint). * An attempt to delete a ref by pushing into a repository whose HEAD symbolic reference points at an unborn branch that cannot be created due to ref D/F conflict (e.g. refs/heads/a/b exists, HEAD points at refs/heads/a) failed. (merge b112b14 jx/do-not-crash-receive-pack-wo-head later to maint). * The low-level "git send-pack" did not honor 'user.signingkey' configuration variable when sending a signed-push. (merge d830d39 db/send-pack-user-signingkey later to maint). * "sparse checkout" misbehaved for a path that is excluded from the checkout when switching between branches that differ at the path. (merge 7d78241 as/sparse-checkout-removal later to maint). * An experimental "untracked cache" feature used uname(2) in a slightly unportable way. (merge 100e433 cb/uname-in-untracked later to maint). * A "rebase" replays changes of the local branch on top of something else, as such they are placed in stage #3 and referred to as "theirs", while the changes in the new base, typically a foreign work, are placed in stage #2 and referred to as "ours". Clarify the "checkout --ours/--theirs". (merge f303016 se/doc-checkout-ours-theirs later to maint). * The "rev-parse --parseopt" mode parsed the option specification and the argument hint in a strange way to allow '=' and other special characters in the option name while forbidding them from the argument hint. This made it impossible to define an option like "--pair <key>=<value>" with "pair=key=value" specification, which instead would have defined a "--pair=key <value>" option. (merge 2d893df ib/scripted-parse-opt-better-hint-string later to maint). * Often a fast-import stream builds a new commit on top of the previous commit it built, and it often unconditionally emits a "from" command to specify the first parent, which can be omitted in such a case. This caused fast-import to forget the tree of the previous commit and then re-read it from scratch, which was inefficient. Optimize for this common case. (merge 0df3245 mh/fast-import-optimize-current-from later to maint). * Running an aliased command from a subdirectory when the .git thing in the working tree is a gitfile pointing elsewhere did not work. (merge d95138e nd/export-worktree later to maint). * "Is this subdirectory a separate repository that should not be touched?" check "git clean" was inefficient. This was replaced with a more optimized check. (merge fbf2fec ee/clean-remove-dirs later to maint). * The "new-worktree-mode" hack in "checkout" that was added in nd/multiple-work-trees topic has been removed by updating the implementation of new "worktree add". (merge 65f9b75 es/worktree-add-cleanup later to maint). * Remove remaining cruft from "git checkout --to", which transitioned to "git worktree add". (merge 114ff88 es/worktree-add later to maint). * An off-by-one error made "git remote" to mishandle a remote with a single letter nickname. (merge bc598c3 mh/get-remote-group-fix later to maint). * "git clone $URL", when cloning from a site whose sole purpose is to host a single repository (hence, no path after <scheme>://<site>/), tried to use the site name as the new repository name, but did not remove username or password when <site> part was of the form <user>@<pass>:<host>. The code is taught to redact these. (merge adef956 ps/guess-repo-name-at-root later to maint). * Running tests with the "-x" option to make them verbose had some unpleasant interactions with other features of the test suite. (merge 9b5fe78 jk/test-with-x later to maint). * t1509 test that requires a dedicated VM environment had some bitrot, which has been corrected. (merge faacc5a ps/t1509-chroot-test-fixup later to maint). * "git pull" in recent releases of Git has a regression in the code that allows custom path to the --upload-pack=<program>. This has been corrected. Note that this is irrelevant for 'master' with "git pull" rewritten in C. (merge 13e0e28 mm/pull-upload-pack later to maint). * When trying to see that an object does not exist, a state errno leaked from our "first try to open a packfile with O_NOATIME and then if it fails retry without it" logic on a system that refuses O_NOATIME. This confused us and caused us to die, saying that the packfile is unreadable, when we should have just reported that the object does not exist in that packfile to the caller. (merge dff6f28 cb/open-noatime-clear-errno later to maint). * The codepath to produce error messages had a hard-coded limit to the size of the message, primarily to avoid memory allocation while calling die(). (merge f4c3edc jk/long-error-messages later to maint). * strbuf_read() used to have one extra iteration (and an unnecessary strbuf_grow() of 8kB), which was eliminated. (merge 3ebbd00 jh/strbuf-read-use-read-in-full later to maint). * We rewrote one of the build scripts in Perl but this reimplements in Bourne shell. (merge 57cee8a sg/help-group later to maint). * The experimental untracked-cache feature were buggy when paths with a few levels of subdirectories are involved. (merge 73f9145 dt/untracked-subdir later to maint). * "interpret-trailers" helper mistook a single-liner log message that has a colon as the end of existing trailer. * The "interpret-trailers" helper mistook a multi-paragraph title of a commit log message with a colon in it as the end of the trailer block. (merge 5c99995 cc/trailers-corner-case-fix later to maint). * "git describe" without argument defaulted to describe the HEAD commit, but "git describe --contains" didn't. Arguably, in a repository used for active development, such defaulting would not be very useful as the tip of branch is typically not tagged, but it is better to be consistent. (merge 2bd0706 sg/describe-contains later to maint). * The client side codepaths in "git push" have been cleaned up and the user can request to perform an optional "signed push", i.e. sign only when the other end accepts signed push. (merge 68c757f db/push-sign-if-asked later to maint). * Because the configuration system does not allow "alias.0foo" and "pager.0foo" as the configuration key, the user cannot use '0foo' as a custom command name anyway, but "git 0foo" tried to look these keys up and emitted useless warnings before saying '0foo is not a git command'. These warning messages have been squelched. (merge 9e9de18 jk/fix-alias-pager-config-key-warnings later to maint). * "git rev-list" does not take "--notes" option, but did not complain when one is given. (merge 2aea7a5 jk/rev-list-has-no-notes later to maint). * When re-priming the cache-tree opportunistically while committing the in-core index as-is, we mistakenly invalidated the in-core index too aggressively, causing the experimental split-index code to unnecessarily rewrite the on-disk index file(s). (merge 475a344 dt/commit-preserve-base-index-upon-opportunistic-cache-tree-update later to maint). * "git archive" did not use zip64 extension when creating an archive with more than 64k entries, which nobody should need, right ;-)? (merge 88329ca rs/archive-zip-many later to maint). * The code in "multiple-worktree" support that attempted to recover from an inconsistent state updated an incorrect file. (merge 82fde87 nd/fixup-linked-gitdir later to maint). * On case insensitive systems, "git p4" did not work well with client specs. * "git init empty && git -C empty log" said "bad default revision 'HEAD'", which was found to be a bit confusing to new users. (merge ce11360 jk/log-missing-default-HEAD later to maint). * Recent versions of scripted "git am" has a performance regression in "git am --skip" codepath, which no longer exists in the built-in version on the 'master' front. Fix the regression in the last scripted version that appear in 2.5.x maintenance track and older. (merge b9d6689 js/maint-am-skip-performance-regression later to maint). * The branch descriptions that are set with "git branch --edit-description" option were used in many places but they weren't clearly documented. (merge 561d2b7 po/doc-branch-desc later to maint). * Code cleanups and documentation updates. (merge 1c601af es/doc-clean-outdated-tools later to maint). (merge 3581304 kn/tag-doc-fix later to maint). (merge 3a59e59 kb/i18n-doc later to maint). (merge 45abdee sb/remove-unused-var-from-builtin-add later to maint). (merge 14691e3 sb/parse-options-codeformat later to maint). (merge 4a6ada3 ad/bisect-cleanup later to maint). (merge da4c5ad ta/docfix-index-format-tech later to maint). (merge ae25fd3 sb/check-return-from-read-ref later to maint). (merge b3325df nd/dwim-wildcards-as-pathspecs later to maint). (merge 7aa9b9b sg/wt-status-header-inclusion later to maint). (merge f04c690 as/docfix-reflog-expire-unreachable later to maint). (merge 1269847 sg/t3020-typofix later to maint). (merge 8b54c23 jc/calloc-pathspec later to maint). (merge a6926b8 po/po-readme later to maint). (merge 54d160e ss/fix-config-fd-leak later to maint). (merge b80fa84 ah/submodule-typofix-in-error later to maint). (merge 99885bc ah/reflog-typofix-in-error later to maint). (merge 9476c2c ah/read-tree-usage-string later to maint). (merge b8c1d27 ah/pack-objects-usage-strings later to maint). (merge 486e1e1 br/svn-doc-include-paths-config later to maint). (merge 1733ed3 ee/clean-test-fixes later to maint). (merge 5fcadc3 gb/apply-comment-typofix later to maint). (merge b894d3e mp/t7060-diff-index-test later to maint). (merge d238710 as/config-doc-markup-fix later to maint).
jperkin
pushed a commit
that referenced
this issue
Nov 24, 2015
**Released on November 22nd, 2015.** This is a huge release and marks a major milestone for Kyua as it finally implements a long-standing feature request: the ability to execute test cases in parallel. This is a big deal because test cases are rarely CPU-bound: running them in parallel yields much faster execution times for large test suites, allowing faster iteration of changes during development. As an example: the FreeBSD test suite as of this date contains 3285 test cases. With sequential execution, a full test suite run takes around 12 minutes to complete, whereas on a 4-core machine with a high level of parallelism it takes a little over 1 minute. Implementing parallel execution required rewriting most of Kyua's core and partly explains explains why there has not been a new release for over a year. The current implementation is purely subprocess-based, which works but has some limitations and has resulted in a core that is really complex and difficult to understand. Future versions will investigate the use of threads instead for a simplified programming model and additional parallelization possibilities. * Issue #2: Implemented support to execute test cases in parallel when invoking `kyua test`. Parallel execution is *only* enabled when the new `parallelism` configuration variable is set to a value greater than `1`. The default behavior is still to run tests sequentially because some test suites contain test cases with side-effects that might fail when run in parallel. To resolve this, the new metadata property `is_exclusive` can be set to `true` on a test basis to indicate that the test must be run on its own. * Known regression: Running `kyua debug` on a TAP-based test program does not currently report the output in real time. The output will only be displayed once the test program completes. This is a shortcoming of the new parallel execution engine and will be resolved. * Removed the external C-based testers code in favor of the new built-in implementations. The new approach feels significantly faster than the previous one. * Fixed the handling of relative paths in the `fs.*` functions available in `Kyuafile`s. All paths are now resolved relative to the location of the caller `Kyuafile`. `Kyuafile.top` has been updated with these changes and you should update custom copies of this file with the new version. * Changed temporary directory creation to always grant search permissions on temporary directories. This is to prevent potential problems when running Kyua as root and executing test cases that require dropping privileges (as they may later be unable to use absolute paths that point inside their work directory). * The cleanup of work directories does not longer attempt to deal with mount points. If a test case mounts a file system and forgets to unmount it, the mount point will be left behind. It is now the responsibility of the test case to clean after itself. The reasons for this change are simplicity and clarity: there are many more things that a test case can do that have side-effects on the system and Kyua cannot protect against them all, so it is better to just have the test undo anything it might have done. * Improved `kyua report --verbose` to properly handle environment variables with continuation lines in them, and fixed the integration tests for this command to avoid false negatives. * Changed the configuration file format to accept the definition of unknown variables without declaring them local. The syntax version number remains at 2. This is to allow configuration files for newer Kyua versions to work on older Kyua versions, as there is no reason to forbid this. * Fixed stacktrace gathering with FreeBSD's ancient version of GDB. GDB 6.1.1 (circa 2004) does not have the `-ex` flag so we need to generate a temporary GDB script and feed it to GDB with `-x` instead. * Issue #136: Fixed the XML escaping in the JUnit output so that non-printable characters are properly handled when they appear in the process's stdout or stderr. * Issue #141: Improved reporting of errors triggered by sqlite3. In particular, all error messages are now tagged with their corresponding database filename and, if they are API-level errors, the name of the sqlite3 function that caused them. * Issue #144: Improved documentation on the support for custom properties in the test metadata. * Converted the `INSTALL`, `NEWS`, and `README` distribution documents to Markdown for better formatting online.
jperkin
pushed a commit
that referenced
this issue
Jan 11, 2016
Update LICENSE Upstream changes: CHANGES IN highr VERSION 0.5 MAJOR CHANGES o the minimal required R version is 3.0.2 now CHANGES IN highr VERSION 0.4 BUG FIXES o hi_andre() may fail to find highlight under OS X (thanks, Christopher Gandrud, #2) MINOR CHANGES o :: and ::: are recognized as operators, and they will be syntax highlighted in the same way as other operators like +, -, *, and /, etc (thanks, Qiang Li)
jperkin
pushed a commit
that referenced
this issue
Feb 21, 2016
Add missing BUILD_DEPENDS Upstream changes: 0.14 2015-04-02 - Avoid negative repeat count warnings generated from new perls (RT #103266) 0.13 2015-01-17 - handle large base-10 numbers when encoding (GH #2) 0.12 2013-03-29 - make errors more descriptive (Chisel Wright) 0.11 2013-03-14 - repackaged
jperkin
pushed a commit
that referenced
this issue
Feb 28, 2016
Upstream changes: 1.32 2016-02-23 MANWAR - Applied the following patches kindly provided by GREGOA: https://anonscm.debian.org/cgit/pkg-perl/packages/libxml-xpath-perl.git/tree/debian/patches/fix-stringification-overload.patch https://anonscm.debian.org/cgit/pkg-perl/packages/libxml-xpath-perl.git/tree/debian/patches/test.patch https://anonscm.debian.org/cgit/pkg-perl/packages/libxml-xpath-perl.git/tree/debian/patches/xpath-option-to-work-without-internet-connection.patch 1.31 2016-02-22 MANWAR - Proposed fix for RT #112017. 1.30 2016-02-04 MANWAR - Fixed issue RT #15902 (Quoting warnings with translate). - Fixed issue RT #21154 (translate() function does not remove characters or support -) 1.29 2016-02-03 MANWAR - Fixed issue RT# 26144 (createNode doesn't honor position() predicate). 1.28 2016-01-31 MANWAR - Changed the LICENSE information about the package XML::XPath::PerlSAX as per Matt Sergeant email response (dated 2016-01-30). 1.27 2016-01-30 MANWAR - Fixed issue RT# 32012 (Debian bug #187583, http://bugs.debian.org/187583). 1.26 2016-01-25 MANWAR - Fixed inconsistent version issue (CPANTS). - Added key 'provides' to the Makefile.PL script. - Added unit test scripts t/meta-json.t and t/meta-yml.t 1.25 2016-01-20 MANWAR - Merged in GitHub PR #2, thanks to sdeseille. - Merged t/45overloading_number_operator.t and t/99rt_11724.t into t/45cmp_nodeset.t 1.24 2016-01-19 MANWAR - Fixed issue RT# 111278 (XML::XPath::PerlSAX doesn't compile). 1.23 2016-01-18 MANWAR - Fixed issue RT# 6363 (using < in a query returns results as if <= had been used). 1.22 2016-01-13 MANWAR - Fixed issues RT# 30818 and RT# 80277. 1.21 2016-01-12 MANWAR - Fixed issues RT# 14957 and RT# 30819. 1.20 2016-01-10 MANWAR - Fixed issues RT# 26143 and RT# 68703. 1.19 2016-01-05 MANWAR - Fixed issues RT# 14248 and RT# 23924. 1.18 2016-01-04 MANWAR - Fixed issues RT# 6362 and RT# 32233. 1.17 2016-01-01 MANWAR - Fixed issues RT# 3666, RT# 30813 and RT# 90850.
jperkin
pushed a commit
that referenced
this issue
Mar 1, 2016
sysutils/salt: security fix Revisions pulled up: - sysutils/salt/Makefile 1.34-1.36 - sysutils/salt/PLIST 1.15 - sysutils/salt/distinfo 1.17-1.19 - sysutils/salt/patches/patch-salt_modules_cron.py 1.1 - sysutils/salt/patches/patch-salt_modules_status.py 1.1 ------------------------------------------------------------------- Module Name: pkgsrc Committed By: khorben Date: Thu Feb 4 22:05:36 UTC 2016 Modified Files: pkgsrc/sysutils/salt: Makefile distinfo Added Files: pkgsrc/sysutils/salt/patches: patch-salt_modules_status.py Log Message: Avoid a crash in "status.diskusage" when not on Linux or FreeBSD Bump PKGREVISION in the process. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/sysutils/salt/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/sysutils/salt/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/sysutils/salt/patches/patch-salt_modules_status.py ------------------------------------------------------------------- Module Name: pkgsrc Committed By: sevan Date: Sun Feb 7 23:55:01 UTC 2016 Modified Files: pkgsrc/sysutils/salt: Makefile PLIST distinfo Log Message: Update to 2015.8.5, from PR#50779 addresses CVE-2016-1866 Salt 2015.8.5 is identical to the 2015.8.4 release with the addition of a f= ix for issue 30820, fixed by PR #30833. SECURITY FIX CVE-2016-1866: Improper handling of clear messages on the minion, which cou= ld result in executing commands not sent by the master. This issue affects only the 2015.8.x releases of Salt. In order for an atta= cker to use this attack vector, they would have to execute a successful attack o= n an existing TCP connection between minion and master on the pub port. It does = not allow an external attacker to obtain the shared secret or decrypt any encry= pted traffic between minion and master. We recommend everyone upgrade to 2015.8.4 as soon as possible. CORE CHANGES PR #28994: timcharper Salt S3 module has learned how to assume IAM roles Added option mock=3DTrue for state.sls and state.highstate. This allows the= salt state compiler to process sls data in a state run without actually calling = the state functions, thus providing feedback on the validity of the arguments u= sed for the functions beyond the preprocessing validation provided by state.sho= w_sls (issue 30118 and issue 30189). salt '*' state.sls core,edit.vim mock=3DTrue salt '*' state.highstate mock=3DTrue salt '*' state.apply edit.vim mock=3DTrue CHANGES FOR V2015.8.3..V2015.8.4 Extended changelog courtesy of Todd Stansell (https://github.com/tjstansell/salt-changelogs): Generated at: 2016-01-25T17:48:35Z Total Merges: 320 Changes: PR #30613: (basepi) Fix minion/syndic clearfuncs PR #30609: (seanjnkns) Fix documentation for pillar_merge_lists which defau= lt is False, not =E2=80=A6 PR #30584: (julianbrost) file.line state: add missing colon in docstring PR #30589: (terminalmage) Merge 2015.5 into 2015.8 PR #30599: (multani) Documentation formatting fixes PR #30554: (rallytime) Make the salt-cloud actions output more verbose and helpful PR #30549: (techhat) Salt Virt cleanup PR #30553: (techhat) AWS: Support 17-character IDs PR #30532: (whiteinge) Add execution module for working in sls files PR #30529: (terminalmage) Merge 2015.5 into 2015.8 PR #30526: (twangboy) Added FlushKey to make sure it's changes are saved to= disk PR #30521: (basepi) [2015.8] Merge forward from 2015.5 to 2015.8 PR #30485: (jtand) Updated pip_state to work with pip 8.0 on 2015.8 PR #30494: (isbm) Zypper: info_installed =E2=80=94 'errors' flag change to = type 'boolean' PR #30506: (jacksontj) Properly remove newlines after reading the file PR #30508: (rallytime) Fix Linode driver cloning functionality PR #30522: (terminalmage) Update git.list_worktree tests to reflect new ret= urn data PR #30483: (borgstrom) Pyobjects recursive import support (for 2015.8) PR #30491: (jacksontj) Add multi-IP support to network state PR #30496: (anlutro) Fix KeyError when adding ignored pillars PR #30359: (kingsquirrel152) Removes suspected copy/paste error for zmq_filtering functionailty PR #30448: (cournape) Fix osx scripts location PR #30457: (rallytime) Remove fsutils references from modules list PR #30453: (rallytime) Make sure private AND public IPs are listed for Lino= de driver PR #30458: (rallytime) Back-port #30062 to 2015.8 PR #30468: (timcharper) make note of s3 role assumption in upcoming changel= og PR #30470: (whiteinge) Add example of the match_dict format to accept_dict = wheel function PR #30450: (gtmanfred) fix extension loading in novaclient PR #30212: (abednarik) Fix incorrect file permissions in file.line PR #29947: (jfindlay) fileclient: decode file list from master PR #30363: (terminalmage) Use native "list" subcommand to list git worktree= s PR #30445: (jtand) Boto uses False for is_default instead of None PR #30406: (frioux) Add an example of how to use file.managed/check_cmd PR #30424: (isbm) Check if byte strings are properly encoded in UTF-8 PR #30405: (jtand) Updated glusterfs.py for python2.6 compatibility. PR #30396: (pass-by-value) Remove hardcoded val PR #30391: (jtand) Added else statements PR #30375: (rallytime) Wrap formatted log statements with six.u() in cloud/__init__.py PR #30384: (isbm) Bugfix: info_available does not work correctly on SLE 11 series PR #30376: (pritambaral) Fix FLO_DIR path in 2015.8 PR #30389: (jtand) Older versions of ipset don't support comments PR #30373: (basepi) [2015.8] Merge forward from 2015.5 to 2015.8 PR #30372: (jacobhammons) Updated man pages for 2015.8.4, updated copyright= to 2016 PR #30370: (rallytime) Remove incomplete function PR #30366: (rallytime) Back-port #28702 to 2015.8 PR #30361: (cro) Flip the sense of the test for proxymodule imports, add mo= re fns for esxi proxy PR #30267: (isbm) Fix RPM issues with the date/time and add package attribu= tes filtering PR #30360: (jfindlay) file.remove, file.absent: mention recursive dir remov= al PR #30221: (mbarrien) No rolcatupdate for user_exist in Postgres>=3D9.5 `#2= 6845`_ PR #30358: (terminalmage) Add libgit2 version to versions-report PR #30346: (pass-by-value) Prevent orphaned volumes PR #30349: (rallytime) Back-port #30347 to 2015.8 PR #30354: (anlutro) Make sure all ignore_missing SLSes are caught PR #30356: (nmadhok) Adding code author PR #30340: (jtand) Updated seed_test.py for changes made to seed module PR #30339: (jfindlay) Backport #26511 PR #30343: (rallytime) Fix 2015.8 from incomplete back-port PR #30342: (eliasp) Correct whitespace placement in error message PR #30308: (rallytime) Back-port #30257 to 2015.8 PR #30187: (rallytime) Back-port #27606 to 2015.8 PR #30223: (serge-p) adding support for DragonFly BSD PR #30238: (rallytime) Reinit crypto before calling RSA.generate when gener= ating keys. PR #30246: (dmacvicar) Add missing return data to scheduled jobs (`#24237`_= ) PR #30292: (thegoodduke) ipset: fix test=3Dtrue & add comment for every ent= ry PR #30275: (abednarik) Add permanent argument in firewalld. PR #30328: (cachedout) Fix file test PR #30310: (pass-by-value) Empty bucket fix PR #30211: (techhat) Execute choot on the correct path PR #30309: (rallytime) Back-port #30304 to 2015.8 PR #30278: (nmadhok) If datacenter is specified in the config, then look fo= r managed objects under it PR #30305: (jacobhammons) Changed examples to use the "example.com" domain instead of "mycompan=E2=80=A6 PR #30249: (mpreziuso) Fixes performance and timeout issues on win_pkg.inst= all PR #30217: (pass-by-value) Make sure cloud actions can be called via salt r= un PR #30268: (terminalmage) Optimize file_tree ext_pillar and update file.man= aged to allow for binary contents PR #30245: (rallytime) Boto secgroup/iam_role: Add note stating us-east-1 i= s default region PR #30299: (rallytime) ESXi Proxy minions states are located at salt.states.esxi, not vsphere. PR #30202: (opdude) Fixed the periodic call to beacons PR #30303: (jacobhammons) Changed notes to indicate that functions are matc= hed using regular ex=E2=80=A6 PR #30284: (terminalmage) salt.utils.gitfs: Fix Dulwich env detection and submodule handling PR #30280: (jfindlay) add state mocking to release notes PR #30273: (rallytime) Back-port #30121 to 2015.8 PR #30301: (cachedout) Accept whatever comes into hightstate mock for state tests PR #30282: (cachedout) Fix file.append logic PR #30289: (cro) Fix problems with targeting proxies by grains PR #30293: (cro) Ensure we don't log stuff we shouldn't PR #30279: (cachedout) Allow modules to be packed into boto utils PR #30186: (rallytime) Update CLI Examples in boto_ec2 module to reflect co= rrect arg/kwarg positioning PR #30156: (abednarik) Add option in file.append to ignore_whitespace. PR #30189: (rallytime) Back-port #30185 to 2015.8 PR #30215: (jacobhammons) Assorted doc bug fixes PR #30206: (cachedout) Revert "Fix incorrect file permissions in file.line" PR #30190: (jacobhammons) Updated doc site banners PR #30180: (jfindlay) modules.x509._dec2hex: add fmt index for 2.6 compat PR #30179: (terminalmage) Backport #26962 to 2015.8 branch PR #29693: (abednarik) Handle missing source file in ssh_auth. PR #30155: (rallytime) Update boto_secgroup and boto_iam_role docs to only = use region OR profile PR #30158: (rallytime) Move _option(value) calls to __salt__['config.option= '] in boto utils PR #30160: (dmurphy18) Fix parsing disk usage for line with no number and A= IX values in Kilos PR #30162: (rallytime) Update list_present and append grains state function= docs to be more clear. PR #30163: (rallytime) Add warning about using "=3D" in file.line function PR #30164: (basepi) [2015.8] Merge forward from 2015.5 to 2015.8 PR #30168: (abednarik) Fix incorrect file permissions in file.line PR #30154: (Oro) Fix file serialize on windows PR #30144: (rallytime) Added generic ESXCLI command ability to ESXi Proxy M= inion PR #30142: (terminalmage) Fix dockerng.push, and allow for multiple images PR #30075: (joejulian) Convert glusterfs module to use xml PR #30129: (optix2000) Clean up _uptodate() in git state PR #30139: (rallytime) Back-port #29589 to 2015.8 PR #30124: (abednarik) Update regex to detect ip alias in OpenBSD. PR #30133: (stanislavb) Fix typo in gpgkey URL PR #30126: (stanislavb) Log S3 API error message PR #30128: (oeuftete) Log retryable transport errors as warnings PR #30096: (cachedout) Add rm_special to crontab module PR #30106: (techhat) Ensure last dir PR #30101: (gtmanfred) fix bug where nova driver exits with no adminPass PR #30090: (techhat) Add argument to isdir() PR #30094: (rallytime) Fix doc formatting for cloud.create example in modul= e.py state PR #30095: (rallytime) Add the list_nodes_select function to linode driver PR #30082: (abednarik) Fixed saltversioninfo grain return PR #30084: (rallytime) Back-port #29987 to 2015.8 PR #30071: (rallytime) Merge branch '2015.5' into '2015.8' PR #30067: (ryan-lane) Pass in kwargs to boto_secgroup.convert_to_group_ids explicitly PR #30069: (techhat) Ensure that pki_dir exists PR #30064: (rallytime) Add Syndic documentation to miscellaneous Salt Cloud config options PR #30049: (rallytime) Add some more unit tests for the vsphere execution m= odule PR #30060: (rallytime) Back-port #27104 to 2015.8 PR #30048: (jacobhammons) Remove internal APIs from rest_cherrypy docs. PR #30043: (rallytime) Be explicit about importing from salt.utils.jinja to avoid circular imports PR #30038: (rallytime) Back-port #30017 to 2015.8 PR #30036: (rallytime) Back-port #29995 to 2015.8 PR #30035: (rallytime) Back-port #29895 to 2015.8 PR #30034: (rallytime) Back-port #29893 to 2015.8 PR #30033: (rallytime) Back-port #29876 to 2015.8 PR #30029: (terminalmage) git.latest: Fix handling of nonexistent branches PR #30016: (anlutro) Properly normalize locales in locale.gen_locale PR #30015: (anlutro) locale module: don't escape the slash in \n PR #30022: (gqgunhed) Two minor typos fixed PR #30026: (anlutro) states.at: fix wrong variable being used PR #29966: (multani) Fix bigip state/module documentation + serializers documentation PR #29904: (twangboy) Improvements to osx packaging scripts PR #29950: (multani) boto_iam: fix deletion of IAM users when using delete_keys=3Dtrue PR #29937: (multani) Fix states.boto_iam group users PR #29934: (multani) Fix state.boto_iam virtual name PR #29943: (cachedout) Check args correctly in boto_rds PR #29924: (gqgunhed) fixed: uptime now working on non-US Windows PR #29883: (serge-p) fix for nfs mounts in _active_mounts_openbsd() PR #29894: (techhat) Support Saltfile in SPM PR #29856: (rallytime) Added some initial unit tests for the salt.modules.vsphere.py file PR #29855: (rallytime) Back-port #29740 to 2015.8 PR #29890: (multani) Various documentation fixes PR #29850: (basepi) [2015.8] Merge forward from 2015.5 to 2015.8 PR #29811: (anlutro) influxdb: add retention policy module functions PR #29814: (basepi) [2015.8][Windows] Fix multi-master on windows PR #29819: (rallytime) Add esxi module and state to docs build PR #29832: (jleimbach) Fixed typo in order to use the keyboard module for R= HEL without systemd PR #29803: (rallytime) Add vSphere module to doc ref module tree PR #29767: (abednarik) Hosts file update in mod_hostname. PR #29772: (terminalmage) pygit2: skip submodules when traversing tree PR #29765: (gtmanfred) allow nova driver to be boot from volume PR #29773: (l2ol33rt) Append missing wget in debian installation guide PR #29800: (rallytime) Back-port #29769 to 2015.8 PR #29775: (paulnivin) Change listen requisite resolution from name to ID declaration PR #29754: (rallytime) Back-port #29719 to 2015.8 PR #29713: (The-Loeki) Pillar-based cloud providers still forcing use of deprecated 'provider' PR #29729: (rallytime) Further clarifications on "unless" and "onlyif" requisites. PR #29737: (akissa) fix pillar sqlite3 documentation examples PR #29743: (akissa) fix pillar sqlite not honouring config options PR #29723: (rallytime) Clarify db_user and db_password kwargs for postgres_user.present state function PR #29722: (rallytime) Link "stateful" kwargs to definition of what "statef= ul" means for cmd state. PR #29724: (rallytime) Add examples of using multiple matching levels to Pi= llar docs PR #29726: (cachedout) Disable some boto tests per resolution of moto issue PR #29708: (lagesag) Fix test=3DTrue for file.directory with recurse ignore_files/ignore_dirs. PR #29642: (cachedout) Correctly restart deamonized minions on failure PR #29599: (cachedout) Clean up minion shutdown PR #29675: (clinta) allow returning all refs PR #29683: (rallytime) Catch more specific error to pass the error message through elegantly. PR #29687: (basepi) [2015.8] Merge forward from 2015.5 to 2015.8 PR #29681: (clinta) fix bare/mirror in git.latest PR #29644: (rallytime) Fixed a couple more ESXi proxy minion bugs PR #29645: (rallytime) Back-port #29558 to 2015.8 PR #29632: (jfindlay) reduce severity of tls module __virtual__ logging PR #29606: (abednarik) Fixed duplicate mtu entry in RedHat 7 network configuration. PR #29613: (rallytime) Various ESXi Proxy Minion Bug Fixes PR #29628: (DmitryKuzmenko) Don't create io_loop before fork PR #29609: (basepi) [2015.8][salt-ssh] Add ability to set salt-ssh command = umask in roster PR #29603: (basepi) Fix orchestration failure-checking PR #29597: (terminalmage) dockerng: Prevent exception when API response con= tains empty dictionary PR #29596: (rallytime) Back-port #29587 to 2015.8 PR #29588: (rallytime) Added ESXi Proxy Minion Tutorial PR #29572: (gtmanfred) [nova] use old discover_extensions if available PR #29545: (terminalmage) git.latest: init submodules if not yet initialize= d PR #29548: (rallytime) Back-port #29449 to 2015.8 PR #29547: (rallytime) Refactored ESXCLI-based functions to accept a list o= f esxi_hosts PR #29563: (anlutro) Fix a call to deprecated method in python-influxdb PR #29565: (bdrung) Fix typos and missing release note PR #29540: (basepi) [2015.8] Merge forward from 2015.5 to 2015.8 PR #29499: (rallytime) Initial commit of ESXi Proxy Minion PR #29526: (jfindlay) 2015.8.2 notes: add note about not being released PR #29531: (jfindlay) grains.core: handle undefined variable PR #29538: (basepi) [2015.8] [salt-ssh] Remove umask around actual executio= n for salt-ssh PR #29505: (rallytime) Update boto_rds state docs to include funky yaml syn= tax for "tags" option. PR #29513: (bdrung) Drop obsolete syslog.target from systemd services PR #29500: (rallytime) Back-port #29467 to 2015.8 PR #29463: (abednarik) Add **kwargs to debconf.set. PR #29399: (jfindlay) modules.status: add human_readable option to uptime PR #29433: (cro) Files for building .pkg files for MacOS X PR #29455: (jfindlay) modules.nova.__init__: do not return None PR #29454: (jfindlay) rh_service module __virtual__ return error messages PR #29476: (tbaker57) Doc fix - route_table_present needs subnet_names (not subnets) as a key PR #29487: (rallytime) Back-port #29450 to 2015.8 PR #29441: (rallytime) Make sure docs line up with blade_idrac function spe= cs PR #29440: (rallytime) Back-port #28925 to 2015.8 PR #29435: (galet) Grains return wrong OS version and other OS related valu= es for Oracle Linux PR #29430: (rall0r) Fix host.present state limitation PR #29417: (jacobhammons) Repo install updates PR #29402: (techhat) Add rate limiting to linode PR #29400: (twangboy) Fix #19332 PR #29398: (cachedout) Lint 29288 PR #29331: (DmitryKuzmenko) Bugfix - #29116 raet dns error PR #29390: (jacobhammons) updated version numbers in documentation PR #29381: (nmadhok) No need to deepcopy since six.iterkeys() creates a cop= y PR #29349: (cro) Fix mis-setting chassis names PR #29334: (rallytime) Back-port #29237 to 2015.8 PR #29300: (ticosax) [dockerng] Add support for volume management in docker= ng PR #29218: (clan) check service enable state in test mode PR #29315: (jfindlay) dev tutorial doc: fix markup errors PR #29317: (basepi) [2015.8] Merge forward from 2015.5 to 2015.8 PR #29240: (clan) handle acl_type [[d]efault:][user|group|mask|other] PR #29305: (lorengordon) Add 'file' as a source_hash proto PR #29272: (jfindlay) win_status module: handle 12 hour time in uptime PR #29289: (terminalmage) file.managed: Allow local file sources to use source_hash PR #29264: (anlutro) Prevent ssh_auth.absent from running when test=3DTrue PR #29277: (terminalmage) Update git_pillar runner to support new git ext_p= illar config schema PR #29283: (cachedout) Single-quotes and use format PR #29139: (thomaso-mirodin) [salt-ssh] Add a range roster and range target= ing options for the flat roster PR #29282: (cachedout) dev docs: add development tutorial PR #28994: (timcharper) add support to s3 for aws role assumption PR #29278: (techhat) Add verify_log to SPM PR #29067: (jacksontj) Fix infinite recursion in state compiler for prereq = of SLSs PR #29207: (jfindlay) do not shadow ret function argument PR #29215: (rallytime) Back-port #29192 to 2015.8 PR #29217: (clan) show duration only if state_output_profile is False PR #29221: (ticosax) [dokcerng] Docu network mode PR #29269: (jfindlay) win_status module: fix function names in docs PR #29213: (rallytime) Move _wait_for_task func from vmware cloud to vmware utils PR #29271: (techhat) Pass full path for digest (SPM) PR #29244: (isbm) List products consistently across all SLES systems PR #29255: (garethgreenaway) fixes to consul module PR #29208: (whytewolf) Glance more profile errors PR #29200: (jfindlay) mount state: unmount by device is optional PR #29205: (trevor-h) Fixes #29187 - using winrm on EC2 PR #29170: (cachedout) Migrate pydsl tests to integration test suite PR #29198: (jfindlay) rh_ip module: only set the mtu once PR #29135: (jfindlay) ssh_known_hosts.present state: catch not found exc PR #29196: (s0undt3ch) We need novaclient imported to compare versions PR #29059: (terminalmage) Work around upstream pygit2 bug PR #29112: (eliasp) Prevent backtrace (KeyError) in ssh_known_hosts.present state To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 pkgsrc/sysutils/salt/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/sysutils/salt/PLIST cvs rdiff -u -r1.17 -r1.18 pkgsrc/sysutils/salt/distinfo ------------------------------------------------------------------- Module Name: pkgsrc Committed By: wiz Date: Tue Feb 9 14:23:04 UTC 2016 Modified Files: pkgsrc/sysutils/salt: Makefile distinfo Added Files: pkgsrc/sysutils/salt/patches: patch-salt_modules_cron.py Log Message: Add upstream patch fixing problem with cron on Solaris. >From Travis Paul in PR 50567. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 pkgsrc/sysutils/salt/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/sysutils/salt/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/sysutils/salt/patches/patch-salt_modules_cron.py
jperkin
pushed a commit
that referenced
this issue
Apr 15, 2016
Upstream changes: CHANGES IN mime VERSION 0.4 NEW FEATURES o added a new content type: .geojson -> application/vnd.geo+json (thanks, @dmpe, #3) BUG FIXES o guess_type() may fail on Windows when the file paths are too long (#2) CHANGES IN mime VERSION 0.3 NEW FEATURES o added a few more content types CHANGES IN mime VERSION 0.2 NEW FEATURES o added a function parse_multipart() to parse multipart form data submitted via HTTP POST
jperkin
pushed a commit
that referenced
this issue
Jul 17, 2016
Upstream changes: 2016-02-23 14:01:33 +0000 2.22 ============================== commit f96a77938f94bf74fa00449fe941b70e77de0443 Author: Chris 'BinGOs' Williams <[email protected]> Date: Tue Feb 23 14:01:33 2016 +0000 This is 2.22 commit ef1c866bf188a3cbedc2da5db4e0714d6e195205 Merge: b884aba e2e1b02 Author: Chris Williams <[email protected]> Date: Tue Feb 23 13:57:50 2016 +0000 Merge pull request #4 from brewt/silence-keep-alive-warnings Silence warnings from must_keepalive() commit e2e1b0279b68c0292e2904e4d2212f9293cf2bb1 Author: Adrian Yee <[email protected]> Date: Fri Feb 19 13:08:59 2016 -0800 Silence warnings from must_keepalive() A simple patch to silence warnings from must_keepalive(). HTTP::Request->header() (inherited from HTTP::Header->header()) returns undef if the requested header doesn't exist. Same patch from RT #107397 commit 53fe993ca858fdcb663ac76c5fe3f6120f6d73a1 Author: Adrian Yee <[email protected]> Date: Fri Feb 19 00:52:24 2016 -0800 Fix graceful shutdowns when keep-alives are in use If you shut down the httpd gracefully while there's a keep-alive connection is connected, then any subsequent requests through that connection will result in an error. This occurs since the as the handler's post to the DONE event will fail due to the alias being removed. ============================== 2015-09-28 19:07:04 +0100 2.20 ============================== commit 5a7aee1eb2ea8db7a548eb4c3638e14d94c08dda Author: Chris 'BinGOs' Williams <[email protected]> Date: Mon Sep 28 19:07:04 2015 +0100 This is 2.20 commit 9c84828f48c8079c754311a7b8f80b8ef3ae634f Merge: d272889 7d25abf Author: Chris Williams <[email protected]> Date: Mon Sep 28 18:36:32 2015 +0100 Merge pull request #2 from leejo/rt/73630 resolve RT #73630 - fix some typos commit 7d25abf5522e76e2c22aaa77fde0fedef89eda31 Author: Lee Johnson <[email protected]> Date: Wed Sep 23 16:19:39 2015 +0200 resolve RT #73630 - fix some typos apply patch from [email protected] and fix a couple of other typos spotted commit 3a65df5092c5eef8a62f53a20d23257560f4e386 Author: Lee Johnson <[email protected]> Date: Wed Sep 23 16:10:54 2015 +0200 add more instructions on how to build this dist in the README document that a couple of extra Module::Install mods are required as a vanilla Module::Install does not support some of the options in the Makefile.PL update .gitignore to included (well, exclude) files generated by the build process
jperkin
pushed a commit
that referenced
this issue
Jul 17, 2016
- Fix incorrectly reporting files containing disabled formatting as being formatted. - Fix incorrect handling of quoted arguments in the options file (#321). - Fix error in identifying an enum return type as an enumeration (#322, 323). - Fix error in identifying an enum argument as an enumeration (#327). - Fix recognition of Qt keywords when used as variables in C++ (#329). - Fix recognition of a pointer in a C++ cast (#316). - Fix removing trailing whitespace after a changed pointer or reference cast. - Add new bracket style option "style=vtk" (#155). - Add new option "indent-preproc-block" to indent blocks of preprocessor directives (#21, #114, #229, #242, #294). - Add new option, "dry-run", to run AStyle without updating the files (#184, #285). - Add new options, "html" (-!") and "html=###", to display the HTML help documentation in the default browser. - Add tags "*INDENT-OFF*" and "*INDENT_ON*" to disable formatting of source code blocks (#2, #47, #55, #78, #110, #176). - Add tag *NOPAD* to disable selected formatting on a single line. - Add '__attribute__ ((visibility ("default")))' to Linux exported functions. - Remove option "style=ansi" and make it depreciated (#146). - Remove fix for broken 'case' statements from release 2.02.1, Nov 21, 2011. - Improve Korean translation (#256). - Change shared libraries to include the version number as part of the file name (#264) - Change "help" display to stdout to allow piping and redirection (#63). - Change "version" display to stdout. - Change headers to include foreach, forever, Q_FOREACH, and Q_FOREVER (#98, #154). - Change compiler definition ASTYLE_NO_VCX (no Visual Studio exports) to ASTYLE_NO_EXPORTS. - Change shared library error handler argument from "char*" to "const char*". - Fix not recognizing noexcept, interrupt, and autoreleasepool as pre-command headers (#225, #259). - Fix formatting of C++11 uniform initializer brackets (#253, #257, #260, #284). - Fix to not automatically space pad C++11 uniform initializer brackets (#275). - Fix formatting of enums with leading commas (#159, #179, #270). - Fix formatting of logical && operator in class initializers (#290). - Fix flagging a 'const' variable as a 'const' method (#275). - Fix piping and redirection adding an extra character to the output (#245, #252, #305). - Fix "indent-modifiers" to attach class access modifiers to Horstmann style brackets. - Fix ASFormatter to correctly recognize the end of a C++ raw string literal (#261). - Fix to recognize C++11 "enum class" as an enum (#303). - Fix indent of C++11 "noexecpt" statements within a class (#260, #304). - Fix not resetting templateDepth when a template was not found (#295). - Fix formatting of multiplication in a block paren (#144). - Fix whitespace padding when formatting an rvalue references (#297). - Fix to recognize an rvalue reference without a name (#265). - Fix to not identify an operator overload method as a calculation (#296). - Fix concatenating multiplication with a pointer dereference (#291). - Fix recognition of a pointer dereference following a question mark (#213). - Fix extra space after a trailing reference type (#300). - Fix _asm blocks not being identified as a block opener and the variable not cleared on exit (#163). - Fix indentation of line comments before a "class" opening bracket. - Fix indentation of line comments before a "namespace" opening bracket. - Fix isBracketType() method to correctly process a NULL_TYPE. - Fix unpad-paren to recognize additional variables (#43, #132, #143). - Fix indentation of C# "let" statements. - Fix a few omissions with "fill-empty-lines". - Fix file read to read 64K blocks of data. - Refactor to un-obfuscate (clarify) the code, and improve design and decomposition:: - Extract class Utf8_16 from ASConsole. - Replace Linux dependency on iconv with a Utf8_16 class for ASLibrary. - Move global "using" statements to the astyle namespace in astyle.h and ASLocalizer.h. - Move shared library declarations from astyle.h to astyle_main.h. - Move indentable macros from ASEnhancer to ASResource and create static pairs. - Simplify ASBeautifier procedure to identify the colon (:) type. - Major refactoring in ASBeautifier to create separate variables for an enum, a class statement and a class initializer. - This was needed to fix the processing of C++11 uniform initializers in a class initializer. - Minor changes to ASFormatter and ASBeautifier based on results of the Clang analyzer. - Change several methods in astyle_main to "const".
jperkin
pushed a commit
that referenced
this issue
Jul 17, 2016
Upstream changes: 0.902 2016-07-11 ** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD ** - Fixed multiple $VERSION variables, GH #2. Thanks, Pavel. - Addressed some testing issues with bad SMTP host. - Turned off uninitialized warnings until they can all be resolved. - Let DZil version the CType:: classes - Removed unused EXPORT_OK option 0.901 2016-06-29 ** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD ** - Fixed a bug introduced in 0.900 where the auth method call pointed to the wrong scope. 0.900003 2016-06-10 ** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD ** - Fixed conditional dependencies - Fixed locale specific testing - Fixed the Changes file - Added some git helper files for the repo - Reorganized the PM files into the lib directory - Auto-generate MANIFEST using MANIFEST.SKIP from here on - Ensure all files EOL with \n rather than any combination of \n and \r\n - Renamed many undocumented/private functions to names beginning with _ - Added many, many tests for coverage and to prevent regressions - Updated Config.PL to modernize. - Lazily load Win32API::Registry for ::CType::Win32
jperkin
pushed a commit
that referenced
this issue
Aug 4, 2016
Upstream changes: 0.403 2016-06-27 - Use DateTime->set_locale instead of ->set to set the locale. Using ->set may actually change the local time unintentionally. Patch by Dave Rolsky. GitHub PR #2.
jperkin
pushed a commit
that referenced
this issue
Aug 4, 2016
Update DEPENDS Upstream changes: version 1.054 at 2015-11-12 15:26:29 +0000 ------------------------------------------ Change: 3c9796c2513572da0a41e1ef55db9f86c8b41c59 Author: Chris 'BinGOs' Williams <[email protected]> Date : 2015-11-12 10:24:50 +0000 Support Net::DNS 1.03. Change: 1cea2d126d1d32dc3ecb01e90a0cdef6541127ce Author: Rocco Caputo <[email protected]> Date : 2015-11-12 10:24:50 +0000 Udpate Dist::Zilla configuration for changes to plugins. Change: a6be0cf34adb445e82a166506a42f07e86f3d929 Author: Rocco Caputo <[email protected]> Date : 2014-09-06 14:02:05 +0000 Merge pull request #2 from Hugmeir/master /etc/hosts in Android is in /system/etc/hosts Change: 8f45959868c5154741c0162178c3a95308ede185 Author: Brian Fraser <[email protected]> Date : 2014-07-27 14:42:40 +0000 /etc/hosts in Android is in /system/etc/hosts
jperkin
pushed a commit
that referenced
this issue
Aug 24, 2016
* It support php70 but not yet php71. Tue, Aug 02, 2016 - xdebug 2.4.1 = Fixed bugs: - Fixed issue #1106: A thrown Exception after a class with __debugInfo gives 2 errors - Fixed issue #1241: FAST_CALL/FAST_RET take #2 - Fixed issue #1246: Path and branch coverage should be initialised per request, not globally - Fixed issue #1263: Code coverage segmentation fault with opcache enabled - Fixed issue #1277: Crash when using a userland function from RSHUTDOWN with profiling enabled - Fixed issue #1282: var_dump() of integers > 32 bit is broken on Windows - Fixed issue #1288: Segfault when uncaught exception message does not contain " in " - Fixed issue #1291: Debugclient installation fails on Mac OS X - Fixed issue #1326: Tracing and generators crashes with PHP 7.x - Fixed issue #1333: Profiler accesses memory structures after freeing
jperkin
pushed a commit
that referenced
this issue
Oct 18, 2016
## 1.1.0 / 2016-06-28 ### Minor Enhancements * Support jruby (#8) ## 1.0.0 / 2016-04-28 ### Major enhancements - Merge Simple::ANSI and Colorator. (#7) ### Minor Enhancements - Delete unnecessary `Symbol#to_sym` (#2) - Change argument name of `Enumerator#each` for better code legibility (#3) ### Development Fixes - Convert to new RSpec expectation syntax (#1) - Fix `String#blue` result in README (#4)
jperkin
pushed a commit
that referenced
this issue
Oct 22, 2016
#2.10.1 Release date: 2016-10-08 ### Fixed * App errors are now correctly raised with the explanatory cause in JRuby [Thomas Walpole] * Capybara::Result optimization disabled in JRuby due to issue with lazy enumerator evaluation [Thomas Walpole] See: jruby/jruby#4212 #2.10.0 Release date: 2016-10-05 ### Added * Select `<button>` elements with descendant images with `alt` attributes matching the locator [Ian Lesperance] * Locator string is optional in selector based matchers [Thomas Walpole] * Selectors can specify their default visible setting [Thomas Walpole] * Selector based finders and matchers can be passed a block to filter the results within the retry behavior [Thomas Walpole] #Version 2.9.2 Release date: 2016-09-29 ### Fixed * :label built-in selector finds nested label/control by control id if the label has no 'for' attribute [Thomas Walpole] * Warning issued if an unknown selector type is specified #Version 2.9.1 Release date: 2016-09-23 ### Fixed * allow_label_click option did not work in some cases with Poltergeist - Issue #1762 [Thomas Walpole] * matches_selector? should have access to all of a selectors options except the count options [Thomas Walpole] #Version 2.9.0 Release date: 2016-09-19 ### Fixed * Issue with rack-test driver and obselete mime-types when using `#attach_file` - Issue #1756 [Thomas Walpole] ### Added * `:class` option to many of the built-in selectors [Thomas Walpole] * Removed need to specify value when creating `:boolean` filter type in custom selectors [Thomas Walpole] * Filters can now be implemented through the XPath/CSS expressions in custom selectors [Thomas Walpole] * `Element#matches_xpath?` and `Element#matches_css?` [Thomas Walpole] #Version 2.8.1 Release data: 2016-08-25 ###Fixed * Fixed error message from have_text when text is not found but contains regex special characters [Ryunosuke Sato] * Warn when :exact option is passed that has no effect [Thomas Walpole] # Version 2.8.0 Release date: 2016-08-16 ### Fixed * Issue with modals present when closing the page using selenium - Issue #1696 [Jonas Nicklas, Thomas Walpole] * Server errors raised in test code have the cause set to an explanatory exception in rubies that support Exception#cause rather than a confusing ExpectationNotMet - Issue #1719 [Thomas Walpole] * background/given/given! RSoec aliases will work if RSpec config.shared_context_metadata_behavior == :apply_to_host_groups [Thomas Walpole] * Fixed setting of unexpectedAlertError now that Selenium will be freezing the Capabilities::DEFAULTS [Thomas Walpole] ### Added * 'check', 'uncheck', and 'choose' can now optionally click the associated label if the checkbox/radio button is not visible [Thomas Walpole] * Raise error if Capybara.app_host/default_host are specified incorrectly [Thomas Walpole] * Capybara::Selector::FilterSet allows for sharing filter definitions between selectors [Thomas Walpole] * Remove need to pass nil locator in most node actions when locator is not needed [Thomas Walpole] * New frames API for drivers - Issue #1365 [Thomas Walpole] * Deprecated Element#parent in favor of Element#query_scope to better indicate what it is [Thomas Walpole] * Improved error messages for have_text matcher [Alex Chaffee, Thomas Walpole] * The `:with` option for the field selector now accepts a regular expression for matching the field value [Uwe Kubosch] * Support matching on aria-label attribute when finding fields/links/buttons - Issue #1528 [Thomas Walpole] * Optimize Capybara::Result to only apply fields as necessary in common use-case of `.all[idx]` [Thomas Walpole] #Version 2.7.1 Release date: 2016-05-01 ### Fixed * Issue where within_Frame would fail with Selenium if the frame is removed from within itself [Thomas Walpole] * Reset sessions in reverse order so sessions with active servers are reset last - Issue #1692 [Jonas Nicklas, Thomas Walpole] # Version 2.7.0 Release date: 2016-04-07 ### Fixed * Element#visible?/checked?/disabled?/selected? Now return boolean as expected when using the rack_test driver [Thomas Walpole] * The rack_test driver now considers \<input type="hidden"> elements as non-visible [Thomas Walpole] * A nil locator passed to the built-in html type selectors now behaves consistently, and finds elements of the expected types [Thomas Walpole] * Capybara::Server now searches for available ports on the same interface it binds to [Aaron Stone] * Selenium Driver handles system modals that appear when page is unloading [Thomas Walpole] * Warning output if unused parameters are passed to a selector query [Thomas Walpole] ### Added * Capybara now waits for requests to Capybaras server to complete while restting the session [John Hawthorn, Thomas Walpole] * Capybara.reuse_server option to allow disabling of sharing server instance between sessions [Thomas Walpole] * :multiple filter added to relevant selectors [Thomas Walpole] * Provided server registrations for :webrick and :puma. Capybara.server = :puma for testing with Rails 5 [Thomas Walpole] * Deprecate passing a block to Capybara::server user Capybara::register_server instead [Thomas Walpole] * :option selector supports :selected and :disabled filters [Thomas Walpole] * Element#matches_selector? and associated matchers (match_selector, match_css, etc) for comparing an element to a selector [Thomas Walpole] * Deprecated Driver#browser_initialized? - Driver#reset! is required to be synchronous [Jonas Nicklas, Thomas Walpole] * Deprecated Capybara.save_and_open_page_path in favor of Capybara.save_path with slightly different behavior when using relative paths with save_page/save_screenshot [Thomas Walpole] * :label selector [Thomas Walpole]
jperkin
pushed a commit
that referenced
this issue
Jan 25, 2017
Upstream changes: 1.25 2016-11-17 - Reduce memory usage by only loading Config if needed and not importing from Carp. Based on PR #2 from J. Nick Coston.
jperkin
pushed a commit
that referenced
this issue
Feb 1, 2017
Upstream changes: 1.57 2017-01-22 rurban ---- * Todo the t/exec.t test 2 on cygwin. * Fixed/Todo the t/decrypt.t test 7 utf8 failures. Skip with non UTF-8 locale. 1.56 2017-01-20 rurban ---- * add binmode to the decrypt/encr,decrypt sample scripts * add utf8-encoded testcase to t/decrypt.t [cpan #110921]. use -C * stabilized some tests, add diag to sometimes failing sh tests * moved filter-util.pl to t/ * fixed INSTALLDIRS back to site since 5.12 [gh #2] * fixed exec/sh test races using the same temp. filenames * reversed this Changes file to latest first * added Travis CI
jperkin
pushed a commit
that referenced
this issue
Apr 10, 2017
Upstream changes: unicorn 5.3.0 / 2017-04-01 08:03 UTC A couple of portability fixes from Dylan Thacker-Smith and Jeremy Evans since 5.3.0.pre1 over a week ago, but this looks ready for a stable release, today. When I started this over 8 years ago, I wondered if this would just end up being an April Fools' joke. Guess not. I guess I somehow tricked people into using a terribly marketed web server that cannot talk directly to untrusted clients :x Anyways, unicorn won't be able to handle slow clients 8 years from now, either, or 80 years from now. And I vow never to learn to use new-fangled things like epoll, kqueue, or threads :P Anyways, this is a largish release with several new features, and no backwards incompatibilities. Simon Eskildsen contributed heavily using TCP_INFO under Linux to implement the (now 5 year old) check_client_connection feature: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-check_client_connection https://bogomips.org/unicorn-public/?q=s:check_client_connection&d:..20170401&x=t This also led to FreeBSD and OpenBSD portability improvements in one of our dependencies, raindrops: https://bogomips.org/raindrops-public/20170323024829.GA5190@dcvr/T/#u Jeremy Evans contributed several new features. First he implemented after_worker_exit to aid debugging: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_exit https://bogomips.org/unicorn-public/?q=s:after_worker_exit&d:..20170401&x=t#t And then security-related features to isolate workers. Workers may now chroot to drop access to the master filesystem, and the new after_worker_ready configuration hook now exists to aid with chroot support in workers: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_ready https://bogomips.org/unicorn/Unicorn/Worker.html#method-i-user https://bogomips.org/unicorn-public/?q=s:after_worker_ready&d:..20170401&x=t#t https://bogomips.org/unicorn-public/?q=s:chroot&d:..20170401&x=t#t Additionally, workers may run in a completely different VM space (nullifying preload_app and any CoW savings) with the new worker_exec option: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-worker_exec https://bogomips.org/unicorn-public/?q=s:worker_exec&d:..20170401&x=t#t There are also several improvements to FreeBSD and OpenBSD support with the addition of these features. shortlog of changes since v5.2.0 (2016-10-31): Dylan Thacker-Smith (1): Check for Socket::TCP_INFO constant before trying to get TCP_INFO Eric Wong (30): drop rb_str_set_len compatibility replacement TUNING: document THP caveat for Linux users tee_input: simplify condition for IO#write remove response_start_sent http_request: freeze constant strings passed IO#write Revert "remove response_start_sent" t/t0012-reload-empty-config.sh: access ivars directly if needed t0011-active-unix-socket.sh: fix race condition in test new test for check_client_connection revert signature change to HttpServer#process_client support "struct tcp_info" on non-Linux and Ruby 2.2+ unicorn_http: reduce rb_global_variable calls oob_gc: rely on opt_aref_with optimization on Ruby 2.2+ http_request: reduce insn size for check_client_connection freebsd: avoid EINVAL when setting accept filter test-lib: expr(1) portability fix tests: keep disabled tests defined test_exec: SO_KEEPALIVE value only needs to be true doc: fix links to raindrops project http_request: support proposed Raindrops::TCP states on non-Linux ISSUES: expand on mail archive info + subscription disclaimer test_ccc: use a pipe to synchronize test doc: remove private email support address input: update documentation and hide internals. http_server: initialize @pid ivar gemspec: remove olddoc from build dependency doc: add version annotations for new features unicorn 5.3.0.pre1 doc: note after_worker_exit is also 5.3.0+ test_exec: SO_KEEPALIVE value only needs to be true (take #2) Jeremy Evans (7): Add after_worker_exit configuration option Fix code example in after_worker_exit documentation Add support for chroot to Worker#user Add after_worker_ready configuration option Add worker_exec configuration option Don't pass a block for fork when forking workers Check for SocketError on first ccc attempt Simon Eskildsen (1): check_client_connection: use tcp state on linux unicorn 5.3.0.pre1 / 2017-03-24 00:25 UTC A largish release with several new features. Simon Eskildsen contributed heavily using TCP_INFO under Linux to implement the (now 5 year old) check_client_connection feature: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-check_client_connection https://bogomips.org/unicorn-public/?q=s:check_client_connection&d:..20170324&x=t This also led to FreeBSD and OpenBSD portability improvements in one of our dependencies, raindrops: https://bogomips.org/raindrops-public/20170323024829.GA5190@dcvr/T/#u Jeremy Evans contributed several new features. First he implemented after_worker_exit to aid debugging: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_exit https://bogomips.org/unicorn-public/?q=s:after_worker_exit&d:..20170324&x=t#t And then security-related features to isolate workers. Workers may now chroot to drop access to the master filesystem, and the new after_worker_ready configuration hook now exists to aid with chroot support in workers: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_ready https://bogomips.org/unicorn/Unicorn/Worker.html#method-i-user https://bogomips.org/unicorn-public/?q=s:after_worker_ready&d:..20170324&x=t#t https://bogomips.org/unicorn-public/?q=s:chroot&d:..20170324&x=t#t Additionally, workers may run in a completely different VM space (nullifying preload_app and any CoW savings) with the new worker_exec option: https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-worker_exec https://bogomips.org/unicorn-public/?q=s:worker_exec&d:..20170324&x=t#t There are also several improvements to FreeBSD and OpenBSD support with the addition of these features. 34 changes since 5.2.0 (2016-10-31): Eric Wong (27): drop rb_str_set_len compatibility replacement TUNING: document THP caveat for Linux users tee_input: simplify condition for IO#write remove response_start_sent http_request: freeze constant strings passed IO#write Revert "remove response_start_sent" t/t0012-reload-empty-config.sh: access ivars directly if needed t0011-active-unix-socket.sh: fix race condition in test new test for check_client_connection revert signature change to HttpServer#process_client support "struct tcp_info" on non-Linux and Ruby 2.2+ unicorn_http: reduce rb_global_variable calls oob_gc: rely on opt_aref_with optimization on Ruby 2.2+ http_request: reduce insn size for check_client_connection freebsd: avoid EINVAL when setting accept filter test-lib: expr(1) portability fix tests: keep disabled tests defined test_exec: SO_KEEPALIVE value only needs to be true doc: fix links to raindrops project http_request: support proposed Raindrops::TCP states on non-Linux ISSUES: expand on mail archive info + subscription disclaimer test_ccc: use a pipe to synchronize test doc: remove private email support address input: update documentation and hide internals. http_server: initialize @pid ivar gemspec: remove olddoc from build dependency doc: add version annotations for new features Jeremy Evans (6): Add after_worker_exit configuration option Fix code example in after_worker_exit documentation Add support for chroot to Worker#user Add after_worker_ready configuration option Add worker_exec configuration option Don't pass a block for fork when forking workers Simon Eskildsen (1): check_client_connection: use tcp state on linux
jperkin
pushed a commit
that referenced
this issue
Apr 27, 2017
#Version 2.13.0 Release date: 2017-03-16 ### Added * Selenium driver supports returning element(s) from evaluate_script [Thomas Walpole] * rack_test driver supports click on checkboxes and radio buttons to change their states [Thomas Walpole] * Support RSpec equivalent assertions and expectations for MiniTest [Thomas Walpole] ### Foxed * Editing of content editable children with selenium #Version 2.12.1 Release date: 2017-02-16 ### Fixed * Disable lazy Capybara::Results evaluation for JRuby due to ongoing issues #Version 2.12.0 Release date: 2017-01-22 ### Added * Session#switch_to_frame for manually handling frame switching - Issue #1365 [Thomas Walpole] * Session#within_frame now accepts a selector type (defaults to :frame) and locator [Thomas Walpole] * Session#execute_script and Session#evaluate_script now accept optional arguments that will be passed to the JS function. This may not be supported by all drivers, and the types of arguments that may be passed is limited. If drivers opt to support this feature they should support passing page elements. [Thomas Walpole] * :exact option for text and title matchers - Issue #1256 [Thomas Walpole] * :exact_text option for selector finders/minders - Issue #1256 [Thomas Walpole] * Capybara.exact_text setting that affects the text matchers and :text options passed to selector finders/matchers. Issue #1256 [Thomas Walpole] * :make_visible option for #attach_file that allows for convenient changing of the CSS style of a file input element before attaching the file to it. Requires driver support for passing page elements to Session#execute_script [Thomas Walpole] * assert_all_selectors/assert_none_of_selectors assertions added * :link selector (used by find_link/click_link) now supports finding hyperlink placeholders (no href attribute) when href: nil option is specified [Thomas Walpole] * `within_element` as an alias of `within` due to RSpec collision ### Fixed * Fields inside a disabled fieldset are now correctly considered disabled - Issue #1816 [Thomas Walpole] * Lazy Capybara::Results evaluation enabled for JRuby 9.1.6.0+ * A driver returning nil for #current_url won't raise an exception when calling #current_path [Dylan Reichstadt] * Support Ruby 2.4.0 unified Integer [Koichi ITO] * RackTest driver no longer modifies the text content of textarea elements in order to behave more like a real browser [Thomas Walpole] * TextQuery (assert_text/have_text/etc) now ignores errors when trying to generate more helpful errors messages so the original error isn't hidden [Thomas Walpole] #2.11.0 Release date: 2016-12-05 ### Added * Options for clearing session/local storage on reset added to the Selenium driver * Window size changes wait for the size to stabilize * Defined return value for most actions * Ignore specific error when qutting selenium driver instance - Issue #1773 [Dylan Reichstadt, Thomas Walpole] * Warn on selenium unknown errors rather than raising when quitting driver [Adam Pohorecki, Thomas Walpole] * Capybara::Result#each now returns an `Enumerator` when called without a block - Issue #1777 [Thomas Walpole] ### Fixed * Selenium driver with Chrome should support multiple file upload [Thomas Walpole] * Fix visible: :hidden with :text option behavior [Thomas Walpole] #2.10.2 Release date: 2016-11-30 ### Fixed * App exceptions with multiple parameter initializers now re-raised correctly - Issue #1785 [Michael Lutsiuk] * Use Addressable::URI when parsing current_path since it's more lenient of technically invalid URLs - Issue #1801 [Marcos Duque, Thomas Walpole]
jperkin
pushed a commit
that referenced
this issue
May 1, 2017
Upstream changes: 0.98 2017-04-28 - RT #119101, stop including MYMETA files in the tarball. 0.97 2017-04-27 - WAV: GH #2, fixed an integer overflow error that could result in an incorrect song_length_ms for >16-bit files. 0.96 2016-11-21 - Ogg: RT #118888, fixed crash when trying to read Vorbis comments in an incorrectly framed file with a bad terminal header page. - Removed hints/darwin.pl, don't try to be smarter than Perl about how to build things. - Fixed various minor compiler warnings output by the latest clang on macOS. 0.95 Unreleased community build - Improved DFF parsing for files which end with corrupted chunk. (Adrian Smith) - Improved ID3 support for DFF files. (Adrian Smith) 0.94 Unreleased community build - DSF/DFF: Support dsd file scanning for dsd and dsdiff files. (Kimmo Taskinen) - AIFF: Fixed scanning of 24 bit files. (Adrian Smith)
jperkin
pushed a commit
that referenced
this issue
Jun 6, 2017
2017-01-23 Florian Schlichting <[email protected]> * release awl 0.57 * Update AUTHORS and ChangeLog 2017-01-10 Florian Schlichting <[email protected]> * Browser: add ExtraRowFormat() to format additional rows differently 2017-01-08 Florian Schlichting <[email protected]> * delete session after logout, clean up old sessions (fixes davical#65, Debian #643907) * always use full the ID as username, similar to davical's HTTPAuthSession (fix #1, fix #2, debian #703139) 2017-01-07 Florian Schlichting <[email protected]> * Session::Log and ::Dbg are deprecated * vComponent: add missing strtoupper, so that BEGIN:TYPE...END:TYPE are really case-insensitive 2017-01-02 Florian Schlichting <[email protected]> * vProperty: always escape backslash, and escape semicolon for "other" properties (fixes Debian bug #837154) 2016-12-31 Florian Schlichting <[email protected]> * improve debug logging: ignore components, filter by remote IP or username 2016-12-28 Florian Schlichting <[email protected]> * eliminate trailing whitespace, expand tabs * doc typos 2016-12-02 Florian Schlichting <[email protected]> * Remove deprecated and unused class iCalendar along with remaining $c->local_tzid references 2016-12-01 Paul Kallnbach <[email protected]> * Update vProperty.php 2016-06-13 Florian Schlichting <[email protected]> * Bump AWL version to 0.57 (API change) * fix if-else logic, so that "Unable to Reset Password" does not get overwritten by "Temporary Password" form 2016-06-13 Basti <basti122303@gitlab> * Fix link after password reset in case DAViCal is not installed in the webserver root. Closes:davical-project/davical#94 2016-05-08 Andrew McMillan <[email protected]> * A semi-colon might be escaped within the text value. * Rename get_fields() function. * Improve access to the slow query threshold. 2016-05-10 Florian Schlichting <[email protected]> * always remake the apidoc, and remove the stale copy from git * update Makefile to work with both php5 and php7 2016-02-22 ClemensN <[email protected]> * fixed issue with escaped ',' in CATEGORIES Property that are seperators in this case
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Makefile of sysutils/monit there is a command pax with illegal option -z.
The text was updated successfully, but these errors were encountered: