Skip to content

Commit

Permalink
Update Rails, Gems, and Node Packages, stay on that treadmill! (o19s#887
Browse files Browse the repository at this point in the history
)

Also added back in the Thor gem that had somehow gone missing!
  • Loading branch information
epugh authored Nov 20, 2023
1 parent 682b0f8 commit 2ebabff
Show file tree
Hide file tree
Showing 13 changed files with 328 additions and 290 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 7.11.0 - 2023-11-19

### Features

Want to have custom filters or other variables per query? You can now access a per query `#$qOption##` hash of JSON data in your query template. For example, if you are accessing a RAG endpoint, and you are passing in a query and need some query specific document ids, you can now do that!

https://github.com/o19s/quepid/pull/883 and https://github.com/o19s/quepid/pull/885 by @epugh. Big thanks to @mkr for his work on splainer-search upgrades to support this, and @atarora for masterminding the use of the `qOption` in queries.

### Improvements

* More robust handling of the Static File end point, and better handling of proxied queries that don't return json. https://github.com/o19s/quepid/pull/886 by @epugh.

* On to Rails 7.1.2! https://github.com/o19s/quepid/pull/837 by @epugh.

## 7.10.0 - 2023-11-03

Big feature! Or should I say big refactoring? Meet your new friend "The Search Endpoint". You can now configure a connection to a search engine, maybe one of the classic ones like Solr, OpenSearch, or Elasticsearch, or some new ones like "Static CSV File" or even a "Custom Search API". Once that is configured, then you can reuse that connection over and over. Even better, you can share it with your friends in your Team, similar to how you share Cases and Scorers.
Expand Down
52 changes: 22 additions & 30 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,55 +6,47 @@ ruby '3.2.2'

gem 'activerecord-import', '>= 1.0.7'
gem 'acts_as_list', '>= 1.0.1'
gem 'ancestry'
gem 'angular-rails-templates', '>= 1.0.0.beta'
gem 'apipie-rails', '~> 1.2'
gem 'bcrypt', '~> 3.1.7'
gem 'sassc-rails', '~> 2.1'
gem 'turbolinks', '~> 5'
gem 'bootsnap', require: false
gem 'cal-heatmap-rails', '~> 3.6' # provides assets for cal heatmap, that requires old d3
gem 'colorize', require: false
gem 'cookies_eu'
gem 'd3-rails', '~> 3.5.5' # For cal heatmap
gem 'devise', '>= 4.6.2'
gem 'devise_invitable', '~> 2.0'

# Using this as it wires in via Sprockets and I can't get npm version to work with the main app.
# Had no luck with js/svg approach ;-(
gem 'font-awesome-sass'
gem 'gabba'
gem 'intercom-rails'
gem 'jbuilder', '~> 2.7'
gem 'redis', '~> 5.0.6'
gem 'jquery-rails'
gem 'jquery-ui-rails' # Can we narrow the widgets to load faster?
gem 'listen', '~> 3.3'
gem 'mysql2'

gem 'net-smtp'
gem 'net-pop', '~> 0.1.1'
gem 'net-imap', '~> 0.3.0'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-keycloak'
gem 'omniauth-rails_csrf_protection'
gem 'postmark-rails'
gem 'prophet-rb', '~> 0.5.0'
gem 'puma'
gem 'pundit'
gem 'rails', '~> 7.0.8'
gem 'rails', '~> 7.1.2'
gem 'rails-healthcheck', '~> 1.4'
gem 'rails-html-sanitizer'
gem 'rack-cors', '~> 2.0'
gem 'redis', '~> 5.0.6'
gem 'responders'
gem 'sassc-rails', '~> 2.1'
gem 'sidekiq'
gem 'terser'
gem 'bootsnap', require: false
gem 'listen', '~> 3.3'

gem 'cal-heatmap-rails', '~> 3.6' # provides assets for cal heatmap, that requires old d3
gem 'd3-rails', '~> 3.5.5' # For cal heatmap

# Using this as it wires in via Sprockets and I can't get npm version to work with the main app.
# Had no luck with js/svg approach ;-(
gem 'font-awesome-sass'

gem 'rack-cors', '~> 2.0'
gem 'ancestry'

gem 'omniauth', '~> 2.0'
gem 'omniauth-keycloak'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection', '~> 1.0'

gem 'prophet-rb', '~> 0.5.0'
gem 'rails-healthcheck', '~> 1.4'
gem 'rails-html-sanitizer'

gem 'thor'
gem 'turbolinks', '~> 5'
gem 'vega', '~> 0.3.0'

group :development, :test do
Expand Down
Loading

0 comments on commit 2ebabff

Please sign in to comment.