Skip to content

Commit c71263c

Browse files
authored
Merge pull request #149 from RIPAGlobal/feature/v2.10.0
Gather together recent PR merges and maintenance for v2.10.0
2 parents f7bf0dd + fa7f6c5 commit c71263c

6 files changed

Lines changed: 26 additions & 6 deletions

File tree

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.0
1+
3.3.5

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# 2.10.0 (2024-10-22)
2+
3+
Features:
4+
5+
* Custom controller mixins can now override more of the Scimitar base controller since the inclusion has been moved to the end of the file. This is particularly useful for overriding `rescue_from` declarations. See [#148](https://github.com/RIPAGlobal/scimitar/pull/148) for more - thanks to `@hrtshu`
6+
7+
Fixes:
8+
9+
* The `ResourceTypes` endpoint returned an invalid payload; this is now fixed per RFC 7644 via [#147](https://github.com/RIPAGlobal/scimitar/pull/147) - thanks to `@pbouda`
10+
11+
Other notes:
12+
13+
* `README.md` typo fix via [#145](https://github.com/RIPAGlobal/scimitar/pull/145) - thanks to `@pavelloz`
14+
15+
Gem developer notes:
16+
17+
* Local developer Ruby version (for `rbenv` users, at least) bumped to v3.3.5
18+
* Gemspec development dependency versions bumped to latest, where relevant
19+
* Dockerfile bumps PostgreSQL to v17
20+
121
# 2.9.0 (2024-06-27)
222

323
Features:

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 RIPA Global
3+
Copyright (c) 2024 RIPA Global
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
postgresql:
3-
image: postgres:15
3+
image: postgres:17
44
ports:
55
- '5432'
66
environment:

lib/scimitar/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ module Scimitar
33
# Gem version. If this changes, be sure to re-run "bundle install" or
44
# "bundle update".
55
#
6-
VERSION = '2.9.0'
6+
VERSION = '2.10.0'
77

88
# Date for VERSION. If this changes, be sure to re-run "bundle install"
99
# or "bundle update".
1010
#
11-
DATE = '2024-06-27'
11+
DATE = '2024-10-22'
1212

1313
end

scimitar.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ Gem::Specification.new do |s|
2929
s.add_development_dependency 'pg', '~> 1.5'
3030
s.add_development_dependency 'simplecov-rcov', '~> 0.3'
3131
s.add_development_dependency 'rdoc', '~> 6.7'
32-
s.add_development_dependency 'rspec-rails', '~> 6.1'
32+
s.add_development_dependency 'rspec-rails', '~> 7.0'
3333
s.add_development_dependency 'doggo', '~> 1.3'
3434
end

0 commit comments

Comments
 (0)