Skip to content

Releases: minwook-shin/notion-database

1.2.2

09 Sep 05:08
Compare
Choose a tag to compare

1.2.2 (2024-09-09)

Dependency

  • Update requests library to 2.32.3
  • Update setuptools library to 74.1.2
    • fix security issue
pip install notion-database==1.2.2

Full Changelog: 1.2.1...1.2.2

1.2.1

03 Jun 02:06
Compare
Choose a tag to compare

Changelog

1.2.1 (2024-06-03)

Dependency

  • Update requests library to 2.32.0
    • #20 Bump requests from 2.31.0 to 2.32.0

What's Changed

https://pypi.org/project/notion-database/1.2.1/

Full Changelog: 1.2.0...1.2.1

1.2.0

26 Mar 01:30
Compare
Choose a tag to compare

1.2.0 (2024-03-26)

Features

  • Add support for is_inline param to create_database function
    • Notion API supports creating new databases as inline of parent pages.
    • #19
    • contribution by @cl-fl

What's Changed

  • Add support for is_inline param to create_database function by @cl-fl in #19

New Contributors

  • @cl-fl made their first contribution in #19
pip install notion-database==1.2.0

Full Changelog: 1.1.0...1.2.0

1.1.0

30 May 12:12
Compare
Choose a tag to compare

Changelog

1.1.0 (2023-5-30)

Features

  • Add retrieve block children

Download: https://pypi.org/project/notion-database/1.1.0/
Full Changelog: 1.0.0...1.1.0

1.0.0

28 May 08:41
Compare
Choose a tag to compare

1.0.0 (2023-5-28)

we've implemented all features, change the version rule to the semantic version.

and changed the license to LGPL 3 in the hope that many people use it.

Features

  • Apply tox, pylint tool
  • Add type-hint code
  • Implement run_query_database function
  • Add support for Python 3.11

Improvements

  • Bump requests from 2.28.2 to 2.31.0

Migration guide

  • past version
from notion_database.query import Direction, Timestamp
import notion_database.color as clr
  • current version (>1.0.0)
from notion_database.const.query import Direction, Timestamp
import notion_database.const.color as clr

Deprecate

  • Drop support for Python 3.7
  • Deprecate query_database function
    • move to run_query_database function

Full Changelog: 20220628.8...1.0.0
Download: https://pypi.org/project/notion-database/1.0.0/