Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update the opensearch-rails gem (RM-2427) #1070

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

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
7c76f72
Use opensearch-ruby instead of elasticsearch gem + rename Elasticsear...
mauricebolhuis Mar 24, 2022
e729955
Change repository to compliance-innovations
mauricebolhuis Mar 24, 2022
901be2b
Rename gem names from elasticsearch to opensearch
mauricebolhuis Mar 24, 2022
5163442
Rename elasticsearch directories to opensearch
mauricebolhuis Mar 24, 2022
a0c9c1b
Change module name from Elasticsearch to OpenSearch
mauricebolhuis Mar 24, 2022
a7f1ae3
Rename __elasticsearch__ to __opensearch__
mauricebolhuis Mar 24, 2022
c56e83c
Rename ELASTICSEARCH_URL to OPENSEARCH_URL
mauricebolhuis Mar 24, 2022
ca41528
Change version of gems to 0.1.0.a
mauricebolhuis Mar 24, 2022
bd1a955
Change elasticsearch in comments to opensearch + change rake task nam...
mauricebolhuis Mar 24, 2022
568312e
Update README + CHANGELOG + fix some links
mauricebolhuis Mar 24, 2022
a225260
Update author info in gemspec
mauricebolhuis Mar 24, 2022
85ff162
Use opensearch github action instead of elasticsearch
mauricebolhuis Mar 25, 2022
54607b8
Add github badges
mauricebolhuis Mar 25, 2022
a4f100f
Fix link in README
mauricebolhuis Mar 25, 2022
3822088
Merge pull request #1 from compliance-innovations/feature/replace-ela...
mauricebolhuis Mar 28, 2022
b262e8a
Bump version to 0.1.0
mauricebolhuis Mar 28, 2022
3ad0a17
Pin to opensearch-ruby to version 1 (#2)
mauricebolhuis Sep 20, 2022
5531f55
Pin to opensearch to version 2
mauricebolhuis Sep 21, 2022
da7c666
Remove deprecated type parameter from importing request
mauricebolhuis Sep 21, 2022
bdb6a38
Remove deprecated type parameter from searching request
mauricebolhuis Sep 21, 2022
ebf8442
Remove deprecated include_type_name parameter
mauricebolhuis Sep 21, 2022
79a5d00
Remove deprecated mapping types
mauricebolhuis Sep 21, 2022
6900eb5
Remove deprecated type parameter from opensearch client requests
mauricebolhuis Sep 21, 2022
5bbe5aa
Remove type from persistent requests
mauricebolhuis Sep 21, 2022
9df9c4f
Remove type from examples and README
mauricebolhuis Sep 21, 2022
7cb2302
Remove `when a type is specified` block from indexing spec
mauricebolhuis Sep 22, 2022
7f7dbde
Update opensearch version in README
mauricebolhuis Sep 22, 2022
54f2ba4
Bump versions to 1.0.0
mauricebolhuis Sep 22, 2022
958e538
Add changelog vor version 1.0.0
mauricebolhuis Sep 22, 2022
e128c9e
Merge pull request #3 from compliance-innovations/feature/support-ope...
mauricebolhuis Sep 22, 2022
c42f492
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 29, 2024
cc8a707
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 29, 2024
4174f66
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 30, 2024
609bbd2
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 30, 2024
5c1f35d
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 30, 2024
686f69c
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 30, 2024
39bdf39
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 30, 2024
978ab3f
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Jan 30, 2024
4aad178
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Feb 1, 2024
e546907
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Feb 1, 2024
5e59841
Update the opensearch-rails gem (RM-2427).
martijnbolhuis Feb 1, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 0 additions & 47 deletions .github/workflows/2.5.yml
View file Open in desktop

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/2.6.yml
View file Open in desktop

This file was deleted.

20 changes: 10 additions & 10 deletions .github/workflows/2.7.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
tests:
env:
TEST_ES_SERVER: http://localhost:9200
RAILS_VERSIONS: '5.0,6.0'
RAILS_VERSIONS: '6.1,7.1'
strategy:
fail-fast: false
runs-on: ubuntu-latest
Expand All @@ -25,22 +25,22 @@ jobs:
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- uses: elastic/elastic-github-actions/elasticsearch@master
- uses: opensearch-project/opensearch-ruby/.github/actions/opensearch@main
with:
stack-version: 7.x-SNAPSHOT
cluster-version: 2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Bundle
run: |
sudo apt-get install libsqlite3-dev
gem install bundler
gem install bundler -v 2.4.22
bundle install
bundle exec rake bundle:clean
bundle exec rake bundle:install
- name: Test elasticsearch-rails
run: cd elasticsearch-rails && bundle exec rake test:all
- name: Test elasticsearch-persistence
run: cd elasticsearch-persistence && bundle exec rake test:all
- name: Test elasticsearch-model
run: cd elasticsearch-model && bundle exec rake test:all
- name: Test opensearch-rails
run: cd opensearch-rails && bundle exec rake test:all
- name: Test opensearch-persistence
run: cd opensearch-persistence && bundle exec rake test:all
- name: Test opensearch-model
run: cd opensearch-model && bundle exec rake test:all
22 changes: 11 additions & 11 deletions .github/workflows/2.4.yml → .github/workflows/3.2.yml
View file Open in desktop
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ruby 2.4
name: Ruby 3.2
on:
push:
branches:
Expand All @@ -13,7 +13,7 @@ jobs:
tests:
env:
TEST_ES_SERVER: http://localhost:9200
RAILS_VERSIONS: '5.0'
RAILS_VERSIONS: '7.1'
strategy:
fail-fast: false
runs-on: ubuntu-latest
Expand All @@ -25,22 +25,22 @@ jobs:
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- uses: elastic/elastic-github-actions/elasticsearch@master
- uses: opensearch-project/opensearch-ruby/.github/actions/opensearch@main
with:
stack-version: 7.x-SNAPSHOT
cluster-version: 2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.4
ruby-version: 3.2
- name: Bundle
run: |
sudo apt-get install libsqlite3-dev
gem install bundler
bundle install
bundle exec rake bundle:clean
bundle exec rake bundle:install
- name: Test elasticsearch-rails
run: cd elasticsearch-rails && bundle exec rake test:all
- name: Test elasticsearch-persistence
run: cd elasticsearch-persistence && bundle exec rake test:all
- name: Test elasticsearch-model
run: cd elasticsearch-model && bundle exec rake test:all
- name: Test opensearch-rails
run: cd opensearch-rails && bundle exec rake test:all
- name: Test opensearch-persistence
run: cd opensearch-persistence && bundle exec rake test:all
- name: Test opensearch-model
run: cd opensearch-model && bundle exec rake test:all
12 changes: 6 additions & 6 deletions .github/workflows/jruby.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- uses: elastic/elastic-github-actions/elasticsearch@master
- uses: opensearch-project/opensearch-ruby/.github/actions/opensearch@main
with:
stack-version: 7.x-SNAPSHOT
cluster-version: 2
- uses: ruby/setup-ruby@v1
with:
ruby-version: jruby-9.3
Expand All @@ -38,7 +38,7 @@ jobs:
bundle install
bundle exec rake bundle:clean
bundle exec rake bundle:install
- name: Test elasticsearch-rails
run: cd elasticsearch-rails && bundle exec rake test:all
- name: Test elasticsearch-persistence
run: cd elasticsearch-persistence && bundle exec rake test:all
- name: Test opensearch-rails
run: cd opensearch-rails && bundle exec rake test:all
- name: Test opensearch-persistence
run: cd opensearch-persistence && bundle exec rake test:all
Loading

AltStyle によって変換されたページ (->オリジナル) /