Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Pin django-tables2 to latest version 1.14.0 #41

Closed
wants to merge 1 commit into from

Conversation

pyup-bot
Copy link
Collaborator

django-tables2 is not pinned to a specific version.

I'm pinning it to the latest version 1.14.0 for now.

These links might come in handy: PyPI | Changelog | Repo

Changelog

1.14.0

  • Added separator argument to ManyToManyColumn.
  • Allow mark_safe()'d strings from ManyToManyColumn.tranform()
  • Disabled ordering on ManyToManyColumns by default.

1.13.0

  • Made positional data argument to the table __init__() a keyword argument to make inheritance easier. Will raise a TypeError if ommitted.

1.12.0

1.11.0

  • Added Hungarian translation 471 by hmikihth.
  • Added TemplateColumn.value() and enhanced export docs (fixes 470)
  • Fixed display of pinned rows if table has no data. 477 by khirstinova

1.10.0

  • Added ManyToManyColumn automatically added for ManyToManyFields.

1.9.1

  • Allow customizing the value used in Table.as_values() (when using a render_<name> method) using a value_<name> method. (fixes 458)
  • Allow excluding columns from the Table.as_values() output. (fixes 459)
  • Fixed unicode handling for columhn headers in Table.as_values()

1.9.0

  • Allow computable attrs for <td>-tags from Table.attrs (457, fixes 451)

1.8.0

  • Feature: Added an ExportMixin to export table data in various export formats (CSV, XLS, etc.) using tablib.
  • Defer expanding Meta.sequence to Table.__init__, to make sequence work in combination with extra_columns (fixes 450)
  • Fixed a crash when MultiTableMixin.get_tables() returned an empty array (454 by pypetey

1.7.1

  • Call before_render when rendering with the render_table template tag (fixes 447)

1.7.0

  • Make title() lazy (443 by ygwain, fixes 438)
  • Fix __all__ by populating them with the names of the items to export instead of the items themself.
  • Allow adding extra columns to an instance using the extra_columns argument. Fixes 403, 70
  • Added a hook before_render to allow last-minute changes to the table before rendering.
  • Added BoundColumns.show() and BoundColumns.hide() to show/hide columns on an instance of a Table.
  • Use <listlike>.verbose_name/.verbose_name_plural if it exists to name the items in the list. (fixes 166)

1.6.1

  • Add missing pagination to the responsive bootstrap template (440 by tobiasmcnulty)

1.6.0

  • Add new template bootstrap-responsive.html to generate a responsive bootstrap table. (Fixes 436)

1.5.0

Full disclosure: as of april 1st, 2017, I am an employee of Zostera, as such I will continue to maintain and improve django-tables2.

  • Made TableBase.as_values() an interator (432 by pziarsolo)
  • Added JSONField for data in JSON format.
  • Added __all__ in django_tables2/__init__.py and django_tables2/columns/__init__.py
  • Added a setting DJANGO_TABLES2_TEMPLATE to allow project-wide overriding of the template used to render tables (fixes 434).

1.4.2

  • Feature: Pinned rows (411 by djk2, fixes 406)
  • Fix an issue where ValueError was raised while using a view with a get_queryset() method defined. (fix with 423 by desecho)

1.4.1

1.4.0

  • Return None from Table.as_values() for missing values. 419
  • Fix ordering by custom fields, and refactor TableData 424, fixes 413
  • Revert removing TableData.__iter__() (removed in this commit), fixes 427, 361 and 421.

1.3.0

  • Implement method Table.as_values() to get it's raw values. 394 by intiocean
  • Fix some compatibility issues with django 2.0 408 by djk2

1.2.9

  • Documentation for None-column attributes 401 by dyve

1.2.8

  • None-column attributes on child class overwrite column attributes of parent class
    400 by dyve

1.2.7

  • Apply title to a column's verbose_name when it is derived from a model, fixes 249. (382 by shawnnapora)
  • Update documentation after deprecation of STATIC_URL in django (384, by velaia)
  • Cleanup of the templates, making the output more equal (381 by ralgozino)
  • Use new location for urlresolvers in Django and add backwards compatible import (388 by felixxm)
  • Fix a bug where using sequence and then exclude in a child table would result in a KeyError
  • Some documentation fixes and cleanups.

1.2.6

  • Added get_table_kwargs() method to SingleTableMixin to allow passing custom keyword arguments to the Table constructor. (366 by fritz-k)
  • Allow the children of TableBase render in the {% render_table %} template tag. (377 by shawnnapora)
  • Refactor BoundColumn attributes to allow override of CSS class names, fixes 349 (370 by graup). Current behaviour should be intact, we will change the default in the future so it will not add the column name to the list of CSS classes.

1.2.5

  • Fixed an issue preventing the rest of the row being rendered if a BooleanColumn was in the table for a model without custom choices defined on the model field. (360)

1.2.4

1.2.3

  • Accept text parameter in FileColumn, analogous to LinkColumn (343 by graup)
  • Fix TemplateColumn RemovedInDjango110Warning fixes 346.
  • Use field name in RelatedColumnLink (350, fixes 347)

1.2.2

  • Allow use of custom class names for ordered columns through attrs. (
    329 by theTarkus)
  • Column ordering queryset passthrough (330 by theTarkus)
  • Cleanup/restructuring of documentation, (325)
  • Fixed an issue where explicitly defined column options where not preserved over inheritance (339, issue 337)
  • Fixed an issue where exclude in combination with sequence raised a KeyError (341, issue 205)

1.2.1

  • table footers (323)
  • Non-field based LinkColumn only renders default value if lookup fails. (322)
  • Accept text parameter in BaseLinkColumn-based columns. (322)
  • Pass the table instance into SingleTableMixin's get_table_pagination (320 by georgema1982, fixes 319)
  • Check if the view has paginate_by before before trying to access it. (fixes 326)

1.2.0

  • Allow custom attributes for rows (fixes 47)

1.1.8

  • Ability to change the body of the <a>-tag, by passing text kwarg to the columns inheriting from BaseLinkColumn (318 by desecho, 322)
  • Non-field based LinkColumn only renders default value if lookup fails and text is not set. (322, fixes 257)

1.1.7

  • Added Italian translation (315 by paolodina
  • Added Dutch translation.
  • Fixed {% blocktrans %} template whitespace issues
  • Fixed errors when using a column named items (316)
  • Obey paginate_by (from MultipleObjectMixin) if no later pagination is defined (242)

1.1.6

  • Correct error message about request context processors for current Django (314)
  • Skipped 1.1.5 due to an error while creating the tag.

1.1.4

  • Fix broken setup.py if Django is not installed before django-tables2 (fixes 312)

1.1.3

  • Drop support for Django 1.7
  • Add argument to CheckBoxColumn to render it as checked (original PR: 208)

1.1.2

  • Fix BooleanColumn with choices set will always render as if True (301)
  • Fix a bug with TemplateColumn while using cached template loader (75)

1.1.1

  • Allow Meta.fields to be a list as well as a tuple (250)
  • Call template.render with a dict in Django >= 1.8. (298)
  • Added RelatedLinkColumn() to render links to related objects (297)
  • Remove default value from request param to table.as_html()

1.1.0

  • Add tests for TimeColumn
  • Remove sortable argument for Table and Column constructors and its associated methods. Deprecated since 2012.
  • Remove deprecated aliases for attrs in CheckboxColumn.
  • Remove deprecated OrderByTuple cmp method (deprecated since 2013).
  • Add bootstrap template and (293, fixes 141, 285)
  • Fix different html for tables with and without pagination (293, fixes 149, 285)
  • Remove {% nospaceless %} template tag and remove wrapping template in {% spaceless %} Possible breaking change, if you use custom templates.

1.0.7

  • Explicitly check if column.verbose_name is not None to support empty column headers (fixes 280)
  • Cleanup the example project to make it work with modern Django versions.
  • Do not sort queryset when orderable=False (204 by bmihelac)
  • show_header attribute on Table allows disabling the header (175 by kviktor)
  • LinkColumn now tries to call get_absolute_url on a record if no viewname is provided (283, fixes 231).
  • Add request argument to Table.as_html() to allow passing correct request objects instead of poorly generated ones 282
  • Add coverage reporting to build 282
  • Drop support for python 3.2 (because of coverage), support ends feb 2016 282
  • move build_request from django_table2.utils to tests.utils and amend tests 282

1.0.6

  • Support for custom text value in LinkColumn (277 by toudi)
  • Refactor LinkColumn.render_link() to not escape twice 279
  • Removed Attrs (wrapper for dict), deprecated on 2012-09-18
  • Convert README.md to rst in setup.py to make PyPI look nice (fixes 97)

1.0.5

  • First version released by new maintainer jieter
  • Dropped support for django 1.5 and 1.6, add python 3.5 with django 1.8 and 1.9 to the build matrix (273)
  • Prevent SingleTableView from calling get_queryset twice. (fixes 155)
  • Don't call managers when resolving accessors. (214 by mbertheau, fixes 211)

1.0.4

  • Fix bug in retrieving field.verbose_name under Django 1.8.

1.0.3

  • Remove setup.cfg as PyPI doesn't actually support it, instead it's a distutils2 thing that's been discontinued.

1.0.2

  • Add setup.cfg to declare README.md for PyPI.

1.0.1

  • Convert README to markdown so it's formatted nicely on PyPI.

1.0.0

  • Travis CI builds pass.
  • Added Python 3.4 support.
  • Added Django 1.7 and Django 1.8 support.
  • Convert tests to using py.test.

0.16.0

  • Django 1.8 fixes
  • BoundColumn.verbose_name now titlises only if no verbose_name was given. verbose_name is used verbatim.
  • Add max_length attribute to person CharField
  • Add Swedish translation
  • Update docs presentation on readthedocs

0.15.0

  • Add UK, Russian, Spanish, Portuguese, and Polish translations
  • Add support for computed table attrs.

0.14.0

  • querystring and seturlparam template tags now require the request to be in the context (backwards incompatible) -- 127
  • Add Travis CI support
  • Add support for Django 1.5
  • Add L10N control for columns 120 (ignored in < Django 1.3)
  • Drop Python 2.6.4 support in favour of Python 3.2 support
  • Non-queryset data ordering is different between Python 3 and 2. When comparing different types, their truth values are now compared before falling back to string representations of their type.

0.13.0

  • Add FileColumn.

0.12.1

  • When resolving an accessor, all exceptions are smothered into None.

0.12.0

  • Improve performance by removing unnecessary queries
  • Simplified pagination:
    • Table.page is an instance attribute (no longer property)
    • Exceptions raised by paginators (e.g. EmptyPage) are no longer
      smothered by Table.page
    • Pagination exceptions are raised by Table.paginate
    • RequestConfig can handles pagination errors silently, can be disabled
      by including silent=False in the paginate argument value
  • Add DateTimeColumn and DateColumn to handle formatting datetime
    and timezones.
  • Add BooleanColumn to handle bool values
  • render_table can now build and render a table for a queryset, rather than
    needing to be passed a table instance
  • Table columns created automatically from a model now use specialised columns
  • Column.render is now skipped if the value is considered empty, the
    default value is used instead. Empty values are specified via
    Column.empty_values, by default is (None, &#39;&#39;) (backward incompatible)
  • Default values can now be specified on table instances or Table.Meta
  • Accessor's now honor alters_data during resolving. Fixes issue that would
    delete all your data when a column had an accessor of delete
  • Add default and value to context of TemplateColumn
  • Add cardinality indication to the pagination area of a table
  • Attrs is deprecated, use dict instead

0.11.0

  • Add URLColumn to render URLs in a data source into hyperlinks
  • Add EmailColumn to render email addresses into hyperlinks
  • TemplateColumn can now Django's template loaders to render from a file

0.10.4

  • Fix more bugs on Python 2.6.4, all tests now pass.

0.10.3

  • Fix issues for Python 2.6.4 -- thanks Steve Sapovits & brianmay
  • Reduce Django 1.3 dependency to Table.as_html -- thanks brianmay

0.10.2

  • Fix MANIFEST.in to include example templates, thanks TWAC.
  • Upgrade django-attest to fix problem with tests on Django 1.3.1

0.10.1

  • Fixed support for Django 1.4's paginator (thanks koledennix)
  • Some juggling of internal implementation.
    TableData now supports slicing and returns new TableData instances.
    BoundRows now takes a single argument data (a TableData instance).
  • Add support for get_pagination on SingleTableMixin.
  • SingleTableMixin and SingleTableView are now importable directly from django_tables2.

0.10.0

  • Renamed BoundColumn.order_by to order_by_alias and never returns None
    (Backwards incompatible). Templates are affected if they use something like:
  {% querystring table.prefixed_order_by_field=column.order_by.opposite|default:column.name %}

Which should be rewritten as:

  {% querystring table.prefixed_order_by_field=column.order_by_alias.next %}
  • Added next shortcut to OrderBy returned from BoundColumn.order_by_alias
  • Added OrderByTuple.get()
  • Deprecated BoundColumn.sortable, Column.sortable, Table.sortable,
    sortable CSS class, BoundColumns.itersortable, BoundColumns.sortable; use orderable instead of sortable.
  • Added BoundColumn.is_ordered
  • Introduced concept of an order by alias, see glossary in the docs for details.

0.9.6

  • Fix bug that caused an ordered column's th to have no HTML attributes.

0.9.5

  • Updated example project to add colspan on footer cell so table border renders correctly in Webkit.
  • Fix regression that caused 'sortable' class on <th>.
  • Table.init no longer always calls .order_by() on querysets, fixes 55.
    This does introduce a slight backwards incompatibility. Table.order_by now has the possibility of returning None, previously it would always return an OrderByTuple.
  • DeclarativeColumnsMetaclass.new now uses super()
  • Testing now requires pylint and Attest >=0.5.3

0.9.4

  • Fix regression that caused column verbose_name values that were marked as
    safe to be escaped. Now any verbose_name values that are instances of
    SafeData are used unmodified.

0.9.3

  • Fix regression in SingleTableMixin.
  • Remove stray print statement.

0.9.2

  • SingleTableView now uses RequestConfig. This fixes issues with
    order_by_field, page_field, and per_page_field not being honored.
  • Add Table.Meta.per_page and change Table.paginate to use it as default.
  • Add title template filter. It differs from Django's built-in title filter
    because it operates on an individual word basis and leaves words containing
    capitals untouched. Warning: use {% load ... from ... %} to avoid
    inadvertantly replacing Django's builtin title template filter.
  • BoundColumn.verbose_name no longer does capfirst, titlising is now the
    responsbility of Column.header.
  • BoundColumn.__unicode__ now uses BoundColumn.header rather than
    BoundColumn.verbose_name.

0.9.1

  • Fix version in setup.py (doh)

0.9.0

  • Add support for column attributes (see Attrs)
  • Add BoundRows.items() to yield (bound_column, cell) pairs
  • Tried to make docs more concise. Much stronger promotion of using
    RequestConfig and {% querystring %}

0.8.4

  • Removed random 'print' statements.
  • Tweaked 'paleblue' theme css to be more flexible:
    • removed whitespace: no-wrap
    • header background image to support more than 2 rows of text

0.8.3

  • Fixed stupid import mistake. Tests didn't pick it up due to them ignoring ImportError.

0.8.2

  • SingleTableView now inherits from ListView which enables automatic
    foo_list.html template name resolution (thanks dramon for reporting)
  • render_table template tag no suppresses exceptions when DEBUG=True

0.8.1

  • Fixed bug in render_table when giving it a template (issue 41)

0.8.0

  • Added translation support in the default template via {% trans %}
  • Removed basic_table.html, Table.as_html() now renders table.html but
    will clobber the querystring of the current request. Use the render_table
    template tag instead
  • render_table now supports an optional second argument -- the template to
    use when rendering the table
  • Table now supports declaring which template to use when rendering to HTML
  • Django >=1.3 is now required
  • Added support for using django-haystack's SearchQuerySet as a data source
  • The default template table.html now includes block tags to make it easy to
    extend to change small pieces
  • Fixed table template parsing problems being hidden due to a subsequent
    exception being raised
  • Http404 exceptions are no longer raised during a call to Table.paginate(),
    instead it now occurs when Table.page is accessed
  • Fixed bug where a table couldn't be rendered more than once if it was
    paginated
  • Accessing Table.page now returns a new page every time, rather than reusing
    a single object

0.7.8

  • Tables now support using both sequence and exclude (issue 32).
  • Sequence class moved to django_tables2/utils.py.
  • Table instances now support modification to the exclude property.
  • Removed BoundColumns._spawn_columns.
  • Table.data, Table.rows, and Table.columns are now attributes
    rather than properties.

Got merge conflicts? Close this PR and delete the branch. I'll create a new PR for you.

Happy merging! 馃

@drummonds drummonds closed this Nov 1, 2017
@drummonds drummonds deleted the pyup-pin-django-tables2-1.14.0 branch November 3, 2017 11:18
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants