Releases: rails/globalid
v1.3.0
What's Changed
- Set required ruby version to 2.7.0 and up by @risen in #169
 - Keep using URI RFC2396 parser by @voxik in #192
 - Make 
DEFAULT_LOCATORConfigurable by @heka1024 in #179 
New Contributors
- @risen made their first contribution in #169
 - @biow0lf made their first contribution in #167
 - @duffuniverse made their first contribution in #180
 - @berkos made their first contribution in #170
 - @elia made their first contribution in #195
 - @Earlopain made their first contribution in #188
 - @stevenharman made their first contribution in #173
 - @voxik made their first contribution in #192
 - @m-nakamura145 made their first contribution in #175
 - @heka1024 made their first contribution in #179
 - @tylerwillingham made their first contribution in #200
 
Full Changelog: v1.2.1...v1.3.0
v1.2.1
What's Changed
- Don't break on models where 
primary_keyis not defined by @ghiculescu in #168 
New Contributors
- @ghiculescu made their first contribution in #168
 
Full Changelog: v1.2.0...v1.2.1
1.2.0
What's Changed
- Drop support to Rails < 6.1 and Ruby <2.7 by @rafaelfranca in #153
 - Don't show secrets for SignedGlobalID#inspect by @p8 in #160
 - Allow for composite identifiers delimited by 
/by @nvasilevski in #163 - Add Eager Load Option by @rafacoello in #139
 
New Contributors
- @rafaelfranca made their first contribution in #153
 - @p8 made their first contribution in #159
 - @nvasilevski made their first contribution in #162
 - @rafacoello made their first contribution in #139
 
Full Changelog: v1.1.0...v1.2.0
1.1.0
What's Changed
- URI::GID: Update #check_scheme, no need to call super by @alexcwatt in #146
 - JSON-encode 
GlobalIDs as strings by @georgeclaghorn in #149 - Support pattern matching of 
GlobalID&GlobalID::URIby @ojab in #140 - prevent double find by @ooooooo-q in #148
 - implement non signed global_id helper method on fixture set by @rainerborene in #144
 
New Contributors
- @daemonsy made their first contribution in #142
 - @alexcwatt made their first contribution in #146
 - @liijunwei made their first contribution in #150
 - @ojab made their first contribution in #140
 - @ooooooo-q made their first contribution in #148
 - @rainerborene made their first contribution in #144
 
Full Changelog: v1.0.1...v1.1.0
v1.0.1
Possible ReDoS based DoS vulnerability in GlobalID
There is a ReDoS based DoS vulnerability in the GlobalID gem. This
vulnerability has been assigned the CVE identifier CVE-2023-22799.
Versions Affected:  >= 0.2.1
Not affected:       NOTAFFECTED
Fixed Versions:     1.0.1
Impact
There is a possible DoS vulnerability in the model name parsing section of the
GlobalID gem.  Carefully crafted input can cause the regular expression engine
to take an unexpected amount of time. All users running an affected release
should either upgrade or use one of the workarounds immediately.
Releases
The FIXED releases are available at the normal locations.
Workarounds
There are no feasible workarounds for this issue.
Credits
Thank you ooooooo_k for reporting this!
1.0.0
Stable API release.
The code is the same as the 0.6.0 release.
0.6.0
- Add 
ActiveRecord::FixtureSet.signed_global_idhelper to generate signed ids inside fixtures. 
v0.5.2
- Add back Ruby 2.5 support so 
gem install railsworks out of the box, thereby satisfying Rails' Ruby version requirement. See rails/rails#42931