Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reactive-python/reactpy-django
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.1
Choose a base ref
...
head repository: reactive-python/reactpy-django
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.1.0
Choose a head ref
  • 2 commits
  • 34 files changed
  • 1 contributor

Commits on May 6, 2023

  1. Async ORM mutations and queries (#134)

    - Disable `thread_sensitive` where it's not needed
    - Perform queries and mutations using async
       -   `use_query` now supports async functions.
       -   `use_mutation` now supports async functions.
       -   `django_idom.types.QueryOptions.thread_sensitive` option to customize how sync queries are executed.
       -   `django_idom.hooks.use_mutation` now accepts `django_idom.types.MutationOptions` option to customize how mutations are executed.
    - Use Python's arg/kwarg handlers to properly interpret and differentiate between `kwarg` and `args`. This allow things such as `query=my_function` to be properly handled.
    -  The `mutate` argument on `django_idom.hooks.use_mutation` has been renamed to `mutation`.
    - Add tests for our database routing feature
    - Reduce runtime for tests from ~181 seconds to ~11 seconds by only starting the Django server once
    - Fix bug where ReactPy utilizes Django's default cache timeout, which can prematurely expire our cache entries.
    Archmonger authored May 6, 2023
    Configuration menu
    Copy the full SHA
    d11b39a View commit details
    Browse the repository at this point in the history

Commits on May 7, 2023

  1. v3.1.0 (#144)

    * v3.1.0
    Archmonger authored May 7, 2023
    Configuration menu
    Copy the full SHA
    d61023a View commit details
    Browse the repository at this point in the history
Loading