Skip to content

Commit

Permalink
Merge changes for v5.1 (#285)
Browse files Browse the repository at this point in the history
* DACCESS-207: Update dependencies for FOLIO Poppy (#281)

* Clean up Gemfile, gemspec

* Specify edge version in Gemfile

* Bump to v5.0; release notes

* Change references from newcatalog.library.cornell.edu to catalog.library.cornell.edu

* Require updated version of edge library to use new FOLIO auth (#284)

* Bump version number

---------

Co-authored-by: Greg Delisle <[email protected]>
Co-authored-by: Greg Delisle <[email protected]>
  • Loading branch information
3 people authored Aug 20, 2024
1 parent 134e4a9 commit cbdcbfc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source "http://rubygems.org"
source 'http://rubygems.org'

# Declare your gem's dependencies in blacklight_cornell_requests.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
Expand All @@ -11,7 +11,7 @@ gemspec
# Git. Remember to move these dependencies to your gemspec before releasing
# your gem to rubygems.org.

gem 'cul-folio-edge', '~> 3.0', git: 'https://github.com/cul-it/cul-folio-edge'
gem 'cul-folio-edge', '~> 3.1', git: 'https://github.com/cul-it/cul-folio-edge'

# To use debugger
# gem 'debugger'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Blacklight Cornell Requests

## Overview
This project is a Rails engine designed to plug into a [Blacklight](http://projectblacklight.org) instance. It provides functionality for placing requests for materials via Voyager methods (callslip, hold, recall), document delivery, [BorrowDirect](http://www.borrowdirect.org/), Interlibrary Loan, and more. However, the current codebase is tightly integrated with [Cornell's Blacklight catalog](https://newcatalog.library.cornell.edu).
This project is a Rails engine designed to plug into a [Blacklight](http://projectblacklight.org) instance. It provides functionality for placing requests for materials via Voyager methods (callslip, hold, recall), document delivery, [BorrowDirect](http://www.borrowdirect.org/), Interlibrary Loan, and more. However, the current codebase is tightly integrated with [Cornell's Blacklight catalog](https://catalog.library.cornell.edu).

<p style="text-align: center"><a href="https://zenhub.com"><img src="https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png"></a></p>
2 changes: 1 addition & 1 deletion app/models/blacklight_cornell_requests/work.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def parse_ill(solrdoc)
end

def create_scanit_link(solrdoc)
scanit_link = "#{ENV['ILLIAD_URL']}?Action=10&Form=30&url_ver=Z39.88-2004&rfr_id=info%3Asid%2Fnewcatalog.library.cornell.edu"
scanit_link = "#{ENV['ILLIAD_URL']}?Action=10&Form=30&url_ver=Z39.88-2004&rfr_id=info%3Asid%2Fcatalog.library.cornell.edu"
scanit_link << "&rft.title=#{CGI.escape(@title)}" if @title.present?
if @isbn.present?
isbns = @isbn.join(',')
Expand Down
2 changes: 1 addition & 1 deletion lib/blacklight_cornell_requests/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BlacklightCornellRequests
VERSION = "5.0"
VERSION = '5.1'
end
6 changes: 6 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes - blacklight-cornell-requests

## [5.1] - 2024-08-20

### Changed
- Require v3.1 of `cul-folio-edge` to use new authentication tokens (DACCESS-261)
- Update references to 'newcatalog' to use 'catalog'

## [5.0] - 2024-05-01

### Changed
Expand Down
2 changes: 1 addition & 1 deletion spec/vcr/bd_isbn_failure.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cbdcbfc

Please sign in to comment.