Files
perl-Workflow/perl-Workflow.changes

131 lines
8.5 KiB
Plaintext
Raw Normal View History

Accepting request 888629 from devel:languages:perl:autoupdate - updated to 1.54 see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.54 2021-04-25 Minor feature release, update not required - The existing private API: `Workflow->_get_action()` has been made public as: `get_action()` via PR [#56](https://github.com/jonasbn/perl-workflow/pull/56) addressing issue [#54](https://github.com/jonasbn/perl-workflow/issues/54), a private version is still available as `_get_action()` ensuring backwards compatibility. The change should improve and ease implementations where actions are consumed - The existing methods: `fields()`, `optional_fields()` and `required_fields` have all been made public PR [#57](https://github.com/jonasbn/perl-workflow/pull/57) addressing issue [#55](https://github.com/jonasbn/perl-workflow/issues/55) these methods provide information a UI or other consumer of the workflow could use for user interaction as for issue [#54](https://github.com/jonasbn/perl-workflow/issues/54) and PR: [#56](https://github.com/jonasbn/perl-workflow/pull/56) mentioned above - The implementation of caching for evaluation of nested has been revisted and improved via PR [#90](https://github.com/jonasbn/perl-workflow/pull/90) - A minor issue has been corrected in the documentation was corrected via PR [#111](https://github.com/jonasbn/perl-workflow/pull/111), it seems some design ideas had snuck into the documentation a long time ago, without ever being implemented OBS-URL: https://build.opensuse.org/request/show/888629 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=18
2021-04-29 15:07:09 +00:00
-------------------------------------------------------------------
Mon Apr 26 03:06:38 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.54
see /usr/share/doc/packages/perl-Workflow/Changes.md
## 1.54 2021-04-25 Minor feature release, update not required
- The existing private API: `Workflow->_get_action()` has been made public as: `get_action()` via PR [#56](https://github.com/jonasbn/perl-workflow/pull/56) addressing issue [#54](https://github.com/jonasbn/perl-workflow/issues/54), a private version is still available as `_get_action()` ensuring backwards compatibility. The change should improve and ease implementations where actions are consumed
- The existing methods: `fields()`, `optional_fields()` and `required_fields` have all been made public PR [#57](https://github.com/jonasbn/perl-workflow/pull/57) addressing issue [#55](https://github.com/jonasbn/perl-workflow/issues/55) these methods provide information a UI or other consumer of the workflow could use for user interaction as for issue [#54](https://github.com/jonasbn/perl-workflow/issues/54) and PR: [#56](https://github.com/jonasbn/perl-workflow/pull/56) mentioned above
- The implementation of caching for evaluation of nested has been revisted and improved via PR [#90](https://github.com/jonasbn/perl-workflow/pull/90)
- A minor issue has been corrected in the documentation was corrected via PR [#111](https://github.com/jonasbn/perl-workflow/pull/111), it seems some design ideas had snuck into the documentation a long time ago, without ever being implemented
Accepting request 884202 from devel:languages:perl:autoupdate - updated to 1.53 see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.53 2021-04-09 Minor feature release, update not required - This release changes logging granularity: instead of using the Log::Log4perl root logger for all logging output, use the instance class for logging in object methods as recommended [in the Log4perl documentation](https://metacpan.org/pod/Log::Log4perl#Pitfalls-with-Categories). This change allows logging from workflow to be suppressed in your application by changing the logging level for the `Workflow` category by setting `log4perl.category.Workflow = OFF` in your logging configuration. Please note that if you created classes derived from Workflow, the logger will use those class names as categories. To suppress output entirely, those categories need their own logging configuration. **NOTE** This change adds a `log()` accessor to the "Workflow::Base" class. If you implement your own `log()` accessor or method, please take care to make it return a valid logger instance before calling `SUPER::new()` so the logger is immediately available for logging. - PR [#101](https://github.com/jonasbn/perl-workflow/pull/101) changing confusing logging statements regarding observers having been added when none specified - Added test cases covering Workflow::Exception [#102](https://github.com/jonasbn/perl-workflow/pull/102) OBS-URL: https://build.opensuse.org/request/show/884202 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=17
2021-04-13 14:49:28 +00:00
-------------------------------------------------------------------
Sat Apr 10 03:08:41 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.53
see /usr/share/doc/packages/perl-Workflow/Changes.md
## 1.53 2021-04-09 Minor feature release, update not required
- This release changes logging granularity: instead of using the Log::Log4perl root logger for all logging output, use the instance class for logging in object methods as recommended [in the Log4perl documentation](https://metacpan.org/pod/Log::Log4perl#Pitfalls-with-Categories). This change allows logging from workflow to be suppressed in your application by changing the logging level for the `Workflow` category by setting `log4perl.category.Workflow = OFF` in your logging configuration. Please note that if you created classes derived from Workflow, the logger will use those class names as categories. To suppress output entirely, those categories need their own logging configuration.
**NOTE** This change adds a `log()` accessor to the "Workflow::Base" class. If you implement your own `log()` accessor or method, please take care to make it return a valid logger instance before calling `SUPER::new()` so the logger is immediately available for logging.
- PR [#101](https://github.com/jonasbn/perl-workflow/pull/101) changing confusing logging statements regarding observers having been added when none specified
- Added test cases covering Workflow::Exception [#102](https://github.com/jonasbn/perl-workflow/pull/102)
Accepting request 871396 from devel:languages:perl:autoupdate - updated to 1.52 see /usr/share/doc/packages/perl-Workflow/Changes.md ## 1.52 2021-02-11 Bug fix release, update recommended - Addressed bug/issue [#95](https://github.com/jonasbn/perl-workflow/issues/95) via PR [#96](https://github.com/jonasbn/perl-workflow/pull/96), the issue was introduced with PR [#85](https://github.com/jonasbn/perl-workflow/pull/85) in release 1.51 - Improvements to Dist::Zilla config, only ExtUtils::MakeMaker supported via Dist::Zilla now. Module::Build support having been removed. See the [article by Neil Bowers](https://neilb.org/2015/05/18/two-build-files-considered-harmful.html) (NEILB) on the topic. Thanks to Karen Etheridge (ETHER) for information and link to the above-mentioned article (issue [#93](https://github.com/jonasbn/perl-workflow/issues/95), resolved via PR [#98](https://github.com/jonasbn/perl-workflow/pull/98)) - Documentation in `INSTALL` file updated, the information was somewhat scarce and outdated (issue [#92](https://github.com/jonasbn/perl-workflow/issues/92), resolved via PR [#99](https://github.com/jonasbn/perl-workflow/pull/99)) - Some URLs fixed via PR [#97](https://github.com/jonasbn/perl-workflow/pull/97), thanks to Michiel W. Beijen for the contribution - More unit-tests added via PR [#94](https://github.com/jonasbn/perl-workflow/pull/94), continued work on issue [#36](https://github.com/jonasbn/perl-workflow/pull/94) improving test coverage OBS-URL: https://build.opensuse.org/request/show/871396 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=16
2021-02-15 12:37:43 +00:00
-------------------------------------------------------------------
Fri Feb 12 03:07:56 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.52
see /usr/share/doc/packages/perl-Workflow/Changes.md
## 1.52 2021-02-11 Bug fix release, update recommended
- Addressed bug/issue [#95](https://github.com/jonasbn/perl-workflow/issues/95) via PR [#96](https://github.com/jonasbn/perl-workflow/pull/96), the issue was introduced with PR [#85](https://github.com/jonasbn/perl-workflow/pull/85) in release 1.51
- Improvements to Dist::Zilla config, only ExtUtils::MakeMaker supported via Dist::Zilla now. Module::Build support having been removed. See the [article by Neil Bowers](https://neilb.org/2015/05/18/two-build-files-considered-harmful.html) (NEILB) on the topic. Thanks to Karen Etheridge (ETHER) for information and link to the above-mentioned article (issue [#93](https://github.com/jonasbn/perl-workflow/issues/95), resolved via PR [#98](https://github.com/jonasbn/perl-workflow/pull/98))
- Documentation in `INSTALL` file updated, the information was somewhat scarce and outdated (issue [#92](https://github.com/jonasbn/perl-workflow/issues/92), resolved via PR [#99](https://github.com/jonasbn/perl-workflow/pull/99))
- Some URLs fixed via PR [#97](https://github.com/jonasbn/perl-workflow/pull/97), thanks to Michiel W. Beijen for the contribution
- More unit-tests added via PR [#94](https://github.com/jonasbn/perl-workflow/pull/94), continued work on issue [#36](https://github.com/jonasbn/perl-workflow/pull/94) improving test coverage
-------------------------------------------------------------------
Mon Feb 1 03:09:46 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.51
see /usr/share/doc/packages/perl-Workflow/Changes.md
-------------------------------------------------------------------
Tue Jan 26 03:09:02 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.50
see /usr/share/doc/packages/perl-Workflow/Changes
Accepting request 863100 from devel:languages:perl:autoupdate - updated to 1.49 see /usr/share/doc/packages/perl-Workflow/Changes 1.49 2021-01-08 Maintenance and minor feature release, update not required - Addressed an issue with return values from Workflow::Condition::GreedyOR's `evaluate_condition`, PR #50 from Erik Huelsmann - Fixed a bug in condition caching described in issue #9, PR #27 from Erik Huelsmann - Fixed a bug in Workflow::Condition::LazyAND with wrongful return values, PR #40 from Erik Huelsmann - Fixed a bug in Workflow::Validator::InEnumeratedType with wrongful naming, PR #33 from Erik Huelsmann - Updated Dist::Zilla configuration and added LICENSE file to repository based on generated from Dist::Zilla build, this should be automated like the README generation at some point - Improved internal handling for quoting in internal SQL statements, PR #30 from Erik Huelsmann - Improved the SQL used for database creation by adding referentiel integrity, PR #29 from Erik Huelsmann - Addressed a bug in initialization and improved the ability to handle a database handle, PR #32 from Erik Huelsmann - Improved loading of external of a few dependencies, improving error handling, PR #31 from Erik Huelsmann - Additions to test suite, WIP on better scoped condition caching, PR #26 from Erik Huelsmann - Minor feature addition addressing issue #5 with condition caching, PR #25 from Erik Huelsmann Condition caching can be disabled by setting: $Workflow::Condition::CACHE_RESULTS = 0; # false The default is 1, indicating true, - Improvements to test suite, moved from time to counter, speeding up the test, PR #24 from Erik Huelsmann - Documentation updates, PR #23 from Erik Huelsmann - Addressing issue #21 fixing broken URLs, PR #22 from Erik Huelsmann OBS-URL: https://build.opensuse.org/request/show/863100 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Workflow?expand=0&rev=13
2021-01-14 14:30:27 +00:00
-------------------------------------------------------------------
Wed Jan 13 03:09:40 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.49
see /usr/share/doc/packages/perl-Workflow/Changes
1.49 2021-01-08 Maintenance and minor feature release, update not required
- Addressed an issue with return values from Workflow::Condition::GreedyOR's `evaluate_condition`, PR #50 from Erik Huelsmann
- Fixed a bug in condition caching described in issue #9, PR #27 from Erik Huelsmann
- Fixed a bug in Workflow::Condition::LazyAND with wrongful return values, PR #40 from Erik Huelsmann
- Fixed a bug in Workflow::Validator::InEnumeratedType with wrongful naming, PR #33 from Erik Huelsmann
- Updated Dist::Zilla configuration and added LICENSE file to repository based on generated from Dist::Zilla build, this should be automated like the README generation at some point
- Improved internal handling for quoting in internal SQL statements, PR #30 from Erik Huelsmann
- Improved the SQL used for database creation by adding referentiel integrity, PR #29 from Erik Huelsmann
- Addressed a bug in initialization and improved the ability to handle a database handle, PR #32 from Erik Huelsmann
- Improved loading of external of a few dependencies, improving error handling, PR #31 from Erik Huelsmann
- Additions to test suite, WIP on better scoped condition caching, PR #26 from Erik Huelsmann
- Minor feature addition addressing issue #5 with condition caching, PR #25 from Erik Huelsmann
Condition caching can be disabled by setting:
$Workflow::Condition::CACHE_RESULTS = 0; # false
The default is 1, indicating true,
- Improvements to test suite, moved from time to counter, speeding up the test, PR #24 from Erik Huelsmann
- Documentation updates, PR #23 from Erik Huelsmann
- Addressing issue #21 fixing broken URLs, PR #22 from Erik Huelsmann
-------------------------------------------------------------------
Fri Sep 20 14:10:33 UTC 2019 - <timueller+perl@suse.de>
- updated to 1.48
see /usr/share/doc/packages/perl-Workflow/Changes
1.48 2019-09-05 Bug fix release, update not required
- Eliminated warning emitted from test run. Bug reported by Petr Pisar
1.47 2019-09-05 Bug fix release, update not required
- Accidently included cartons local directory in the distribution tar-ball. Bug reported by Tina Müller (tinita)
1.46 2019-05-28 Bug fix release, update not required
- Patch from Oliver Welter, addressing issue with greedy join handling error message
-------------------------------------------------------------------
Wed Jul 12 06:26:15 UTC 2017 - coolo@suse.com
- updated to 1.45
see /usr/share/doc/packages/perl-Workflow/Changes
-------------------------------------------------------------------
Tue Apr 14 15:40:20 UTC 2015 - coolo@suse.com
- updated to 1.41
see /usr/share/doc/packages/perl-Workflow/Changes
-------------------------------------------------------------------
Wed Dec 1 13:36:03 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Sat Aug 7 16:18:24 UTC 2010 - chris@computersalat.de
- update to 1.34
o for more info please see Changes file
- noarch pkg
-------------------------------------------------------------------
Sat Jul 25 19:45:55 CEST 2009 - chris@computersalat.de
- spec mods
* removed ^----------
* removed ^#---------
-------------------------------------------------------------------
Tue Jul 14 13:04:53 CEST 2009 - chris@computersalat.de
- initial package 1.32