Skip to content

Commit 3c7f264

Browse files
committed
Merge branch 'master' of github.com:jahir-husain/json-schema
2 parents 8e565e9 + 671ea19 commit 3c7f264

File tree

5 files changed

+48
-12
lines changed

5 files changed

+48
-12
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
8-
- package-ecosystem: "" # See documentation for possible values
9-
directory: "/" # Location of package manifests
3+
# raise PRs for gem updates
4+
- package-ecosystem: bundler
5+
directory: "/"
6+
schedule:
7+
interval: daily
8+
time: "13:00"
9+
open-pull-requests-limit: 10
10+
11+
# Maintain dependencies for GitHub Actions
12+
- package-ecosystem: github-actions
13+
directory: "/"
1014
schedule:
11-
interval: "daily"
15+
interval: daily
16+
time: "13:00"
17+
open-pull-requests-limit: 10

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
if: github.repository_owner == 'voxpupuli'
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Install Ruby 3.1
1515
uses: ruby/setup-ruby@v1
1616
with:

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
COVERAGE: ${{ matrix.coverage }}
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- name: Install Ruby ${{ matrix.ruby }}
3535
uses: ruby/setup-ruby@v1
3636
with:
@@ -40,3 +40,10 @@ jobs:
4040
run: bundle exec rake ${{ matrix.rake_task }}
4141
- name: Build gem
4242
run: gem build *.gemspec
43+
tests:
44+
needs:
45+
- test
46+
runs-on: ubuntu-latest
47+
name: Test suite
48+
steps:
49+
- run: echo Test suite completed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [v4.1.1](https://github.com/voxpupuli/json-schema/tree/v4.1.1) (2023-09-15)
4+
5+
[Full Changelog](https://github.com/voxpupuli/json-schema/compare/v4.1.0...v4.1.1)
6+
7+
**Merged pull requests:**
8+
9+
- Add dummy CI job we can depend on [\#503](https://github.com/voxpupuli/json-schema/pull/503) ([bastelfreak](https://github.com/bastelfreak))
10+
- build\(deps\): bump actions/checkout from 2 to 4 [\#502](https://github.com/voxpupuli/json-schema/pull/502) ([dependabot[bot]](https://github.com/apps/dependabot))
11+
- dependabot: check for github actions and gems [\#501](https://github.com/voxpupuli/json-schema/pull/501) ([bastelfreak](https://github.com/bastelfreak))
12+
13+
## [v4.1.0](https://github.com/voxpupuli/json-schema/tree/v4.1.0) (2023-07-24)
14+
15+
[Full Changelog](https://github.com/voxpupuli/json-schema/compare/v4.0.0...v4.1.0)
16+
17+
**Implemented enhancements:**
18+
19+
- Add `allPropertiesRequired` and `noAdditionalProperties` options [\#494](https://github.com/voxpupuli/json-schema/pull/494) ([a-lavis](https://github.com/a-lavis))
20+
21+
**Fixed bugs:**
22+
23+
- Integer as string should be defined as string [\#497](https://github.com/voxpupuli/json-schema/pull/497) ([mohanapriya2308](https://github.com/mohanapriya2308))
24+
- Handling allOf error message [\#495](https://github.com/voxpupuli/json-schema/pull/495) ([anupama-kumari](https://github.com/anupama-kumari))
25+
326
## [v4.0.0](https://github.com/voxpupuli/json-schema/tree/v4.0.0) (2023-04-24)
427

528
[Full Changelog](https://github.com/voxpupuli/json-schema/compare/v3.0.0...v4.0.0)

VERSION.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
major: 4
2-
minor: 0
3-
patch: 0
2+
minor: 1
3+
patch: 1

0 commit comments

Comments
 (0)