Skip to content
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

chore(deps): update dependency agate to v1.13.0 #562

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
agate (source) ==1.9.1 -> ==1.13.0 age adoption passing confidence

Release Notes

wireservice/agate (agate)

v1.13.0

Compare Source

  • fix: :meth:.Table.order_by sorts None as equal to None.

v1.12.0

Compare Source

  • feat: :class:.Number accepts a no_leading_zeroes keyword argument, to indicate whether to disallow numbers with leading zeroes (not including a single zero, or a single zero before a decimal).

v1.11.0

Compare Source

  • fix: The key argument to :meth:.Table.to_json errors if two values are equal, even if their CSV representation is different: for example, "1/1/2020" and "01/01/2020". However, until now, this was not the case for numbers: for example, "3.0" was treated as unequal to "3.00".

v1.10.2

Compare Source

  • fix: Version 1.10.0 errors on piped data.

v1.10.1

Compare Source

  • fix: Version 1.10.0 errors on empty tables and seeks to the file's beginning, instead of to the original offset.
  • fix: :meth:.Number.csvify returns a Decimal (or None), instead of str. :meth:.Table.to_csv with quoting=csv.QUOTE_NONNUMERIC now works.

v1.10.0

Compare Source

  • feat: :meth:.Table.from_csv reads the file line by line. If column_types is a :class:.TypeTester, it reads the file into memory. (#​778)

  • fix: Fix :meth:.TableSet.print_structure for nested tablesets. (#​765)

    .. code-block:: python

    import agate
    mytable = agate.Table([
    ('foo', 'FOO', 1),
    ('foo', 'FOO', 2),
    ('bar', 'BOZ', 1),
    ('bar', 'BAZ', 2),
    ('bar', 'BIZ'),
    ])

    Instead of:

    .. code-block:: none

    mytable.group_by('a').group_by('b')
    AttributeError: 'TableSet' object has no attribute 'rows'

    Now:

    .. code-block:: none

    mytable.group_by('a').group_by('b')

    table rows
    foo.FOO 2
    bar.BOZ 1
    bar.BAZ 1
    bar.BIZ 1

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

@renovate renovate bot force-pushed the renovate/agate-1.x branch from b3d25af to 8926e43 Compare January 29, 2025 08:59
@renovate renovate bot changed the title chore(deps): update dependency agate to v1.12.0 chore(deps): update dependency agate to v1.13.0 Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants