8000 Comparing b71930a...c16c6ee · activeadmin/activeadmin · GitHub
[go: up one dir, main page]

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: activeadmin/activeadmin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b71930a
Choose a base ref
...
head repository: activeadmin/activeadmin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c16c6ee
Choose a head ref
  • 6 commits
  • 20 files changed
  • 6 contributors

Commits on Aug 24, 2024

  1. Backport #8450 #8451 to 3.0 stable (#8454)

    * Update dependencies
    
    Relax sqlite3 version constraint because rails/rails#51636 is included
    in the latest 7.1.4 release
    
    * Fix bug report template and update to Rails 7.2
    
    Current bug report template does not work because sqlite3 2.x is not
    compatible with Rails 7.0.x.
    
    This commit also:
    - Test bug report template against Ruby 3.3
    - Set config.eager_load to avoid a warning on stdout:
      ```
      config.eager_load is set to nil. Please update your config/environments/*.rb files accordingly:
      ```
    - Default to `3-0-stable` branch when `ACTIVE_ADMIN_PATH` is not
      specified
    - Add `force_ruby_platform` to `sqlite3` for uniformity with `master`
      branch
    tagliala authored Aug 24, 2024
    Configuration menu
    Copy the full SHA
    da13e83 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Backport Add favicon to template app to fix Rails 7.2 test suite run (#…

    …8468)
    
    add favicon for template app
    
    We have some specs failing in Rails 7.2. The only hint we have in the
    log is
    
    ```
    No route matches [GET] "/favicon.ico" (ActionController::RoutingError)
    ```
    
    Rails 7.2 new app generator does not use favicon.ico anymore. It uses a
    png + meta "icon" tag.
    
    Let's configure the icon in the template app to prevent this kind of
    error.
    mgrunberg authored Sep 4, 2024
    Configuration menu
    Copy the full SHA
    983cf3a View commit details
    Browse the repository at this point in the history
  2. Backport Use attribute_types instead of columns_hash to determine type (

    #8469)
    
    Use attribute_types instead of columns_hash to determine type
    
    Previously, virtual attributes of type boolean with value `nil` would
    not be rendered as status tag. This also improves boolean detection in
    rare cases when an `attribute` declaration overrides the type detected
    in the database.
    
    Co-authored-by: Tilmann Singer <tils@tils.net>
    mgrunberg and til authored Sep 4, 2024
    Configuration menu
    Copy the full SHA
    276b0d4 View commit details
    Browse the repository at this point in the history
  3. Backport Optimize count query for pagination_total: false option (#8470)

    * Optimize count query for `pagination_total: false` option (#6911)
    
    * Remove duplicated delegation
    
    `total_pages` is listed twice.
    
    * Remove ORDER BY from count subquery
    
    Queries like `SELECT COUNT(*) FROM (SELECT DISTINCT resources.* FROM resources ORDER BY resources.created_at DESC LIMIT 1 OFFSET 30) subquery_for_count`
    are too inefficient
    
    * add specs about ensure count query does not include ORDER BY clause
    
    * exclude also select because based on https://github.com/activeadmin/activeadmin/pull/7489\#issuecomment-1554197081
    
    ---------
    
    Co-authored-by: Rafael Sales <rafaelcds@gmail.com>
    Co-authored-by: David Rodríguez <deivid-rodriguez>
    Co-authored-by: Matias Grunberg <matias@yellowspot.dev>
    
    * fix perform_database_query_matcher: make sure to keep match truthy after the first matched query
    
    ---------
    
    Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
    Co-authored-by: Rafael Sales <rafaelcds@gmail.com>
    3 people authored Sep 4, 2024
    Configuration menu
    Copy the full SHA
    c0cff8f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    726e7e9 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Get ready for 3.2.5 Release (#8473)

    Get ready for 3.2.5 release
    mgrunberg authored Sep 5, 2024
    Configuration menu
    Copy the full SHA
    c16c6ee View commit details
    Browse the repository at this point in the history
Loading
0