Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
pull-requests: write

steps:
- uses: actions/stale@v10.2.0
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GIT
PATH
remote: .
specs:
github-markup (5.0.1)
github-markup (6.0.0)

GEM
remote: https://rubygems.org/
Expand Down
34 changes: 34 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
## 6.0.0 - 2026-05-04

### Breaking

* Drop support for Ruby < 3.3 (Ruby 3.1 EOL March 2025, Ruby 3.2 EOL March 2026)

### Security

* Use HTTPS for cpanminus download in CI to prevent MITM attacks [#2050](https://github.com/github/markup/pull/2050)
* Bump nokogiri to >= 1.19.1 to fix GHSA-wx95-c6cv-8532
* Harden CI pip install with `--require-hashes --no-deps` [#2048](https://github.com/github/markup/pull/2048)
* Use HTTPS for RubyGems source URL in Gemfile [#1854](https://github.com/github/markup/pull/1854)
* Add explicit `contents: read` permissions to CI workflow [#1855](https://github.com/github/markup/pull/1855)
* Bump rexml from 3.3.0 to 3.3.9 (multiple security fixes)

### Bug Fixes

* Fix RST section ID rendering to iterate all anchors instead of only the first [040f91d](https://github.com/github/markup/commit/040f91d)

### Documentation

* Fix spelling errors in codebase [#1479](https://github.com/github/markup/pull/1479)
* Fix broken Textile language link in README [#1703](https://github.com/github/markup/pull/1703)

### Infrastructure

* Remove legacy Dockerfile and .dockerignore (Ubuntu Trusty, non-functional) [#2048](https://github.com/github/markup/pull/2048)
* Update CI test matrix: drop Ruby 3.2, add Ruby 4.0 (now testing 3.3, 3.4, 4.0)
* Bump nokogiri to 1.19.2, activesupport to 7.2.3.1
* Bump github-linguist from 7.30.0 to 9.1.0, then to 9.3.0
* Pin all GitHub Actions to commit SHAs for supply chain hardening
* Add Dependabot configuration for automated dependency updates
* Various Dependabot bumps for CI actions (ruby/setup-ruby, actions/checkout, actions/cache, actions/setup-python, actions/stale)

## 5.0.1 - 2024-06-17
* Bump activesupport from 4.0 to 7.1.3.4

Expand Down
2 changes: 1 addition & 1 deletion lib/github-markup.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module GitHub
module Markup
VERSION = '5.0.1'
VERSION = '6.0.0'
Version = VERSION
end
end