Skip to content

Commit acda9a3

Browse files
Merge branch 'release/0.4.0'
2 parents 5155ef8 + b0f47b6 commit acda9a3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+8418
-1270
lines changed

.github/CODEOWNERS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Configuration for the GitHub feature to automatically request reviews from the code owners when a pull request changes any owned files.
2+
#
3+
# [References]
4+
# https://github.com/blog/2392-introducing-code-owners
5+
# https://help.github.com/articles/about-codeowners
6+
7+
# +--------------------+
8+
# + Default Code Owner +
9+
# +--------------------+
10+
* @arcticicestudio

.github/ISSUE_TEMPLATE.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<!-- Click on the "Preview" tab to render the instructions in a more readable format -->
2+
3+
> **Please read the [contribution guidelines](https://github.com/arcticicestudio/icecore-hashids/blob/develop/CONTRIBUTING.md) before filling out this issue template**.
4+
5+
## Prerequisites
6+
7+
This section and the instructions in the sections below are only part of this issue template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview.
8+
9+
Please do your best to provide as much information as possible and use a clear and descriptive title for your enhancement suggestion or bug report to help maintainers and the community understand and reproduce the behavior, find related reports and to resolve the ticket faster.
10+
11+
* **Ensure the issue has not already been reported by using the [GitHub Issues search](https://github.com/arcticicestudio/icecore-hashids/issues)** — if it has **and the issue is still open**, add a comment to the existing issue instead of opening this new one. If you find a closed issue that seems to be similar to this one, include a link to the original issue in the [metadata head](#metadata-head) section of this issue.
12+
* **Ensure the issue is reproducible** — try to use the [latest version](https://github.com/arcticicestudio/icecore-hashids/releases/latest) and [`develop`](https://github.com/arcticicestudio/icecore-hashids/tree/develop) branch.
13+
14+
## Metadata Head
15+
16+
The metadata head should be added to the top of the issue as [Markdown text quote](https://help.github.com/articles/basic-writing-and-formatting-syntax) containing the [issue type](#issue-type) and if necessary the ID of other related issues.
17+
18+
> Issue type:
19+
Related issues:
20+
21+
### Issue Type
22+
23+
Set the *type* of this issue. It determines which information will be required in the following sections when it is an [bug report](https://github.com/arcticicestudio/icecore-hashids/blob/develop/CONTRIBUTING.md#bug-reports) or an [enhancement suggestion](https://github.com/arcticicestudio/icecore-hashids/blob/develop/CONTRIBUTING.md#enhancement-suggestions).
24+
25+
* *feature*
26+
* *improvement*
27+
* *bug*
28+
* *test*
29+
* *task*
30+
* *subtask*
31+
32+
## Description
33+
34+
Describe the enhancement or bug as in many relevant details as possible. If this is a enhancement suggestion add specific use-cases and explain why this feature or improvement would be useful. If this is a bug provide ensure to fill in the [steps to reproduce](#steps-to-reproduce) it.
35+
36+
### Steps to Reproduce
37+
38+
1. Step One
39+
2. Step Two
40+
3. ...
41+
42+
### Expected Behavior
43+
44+
What you expect to happen?
45+
46+
### Actual Behavior
47+
48+
What actually happens?
49+
50+
## Example
51+
52+
Provide a [MCVE - The Minimal, Complete, and Verifiable Example](https://github.com/arcticicestudio/icecore-hashids/blob/develop/CONTRIBUTING.md#mcve)
53+
54+
**This is a optional section, but it can drastically increase the speed at which this issue can be processed since it takes away the time-consuming reconstruction to reproduce the enhancement or bug.**
55+
56+
The recommened way is to upload it as [Gist](https://gist.github.com) or new repository to GitHub, but of course you can [attach it to this issue](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests), use any free file hosting service or paste the code in [Markdown code blocks](https://help.github.com/articles/basic-writing-and-formatting-syntax) into this issue.
57+
58+
## Environment and Versions
59+
60+
* What is the version of IceCore Hashids you are using?
61+
* What is the name and the version of the OS you're using?
62+
* Have you tried to reproduce it on different OS environments and if yes is the behavior the same for all?
63+
* Which Java JDK/JRE distribution and version are you using? (*Oracle*, *OpenJDK*, ...)
64+
* Are you running the project with your IDE or through Maven?
65+
* Are you using any additional CLI arguments for Java or Maven?
66+
67+
## Stack Trace and Error Messages
68+
69+
```
70+
Paste the full stack trace, error messages or the logfile here ...
71+
```
72+
73+
... or [attach them as files](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests) to this issue.
74+
75+
## References
76+
77+
Add any other references and links which are relevant for this issue.
78+
79+
## Potential Solution
80+
81+
If this is a bug report this might include the lines of code that you have identified as causing the bug or in case of an enhancement suggestion references to other projects where this enhancement already exists.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!-- Click on the "Preview" tab to render the instructions in a more readable format -->
2+
3+
> **Please read the [contribution guidelines](https://github.com/arcticicestudio/icecore-hashids/blob/develop/CONTRIBUTING.md) before filling out this pull request template**.
4+
5+
## Prerequisites
6+
7+
This section and the instructions in the sections below are only part of this pull request template. Please ensure to **delete this whole section, all pre-filled instructions of the sections below and sections you have not filled out before submitting** to ensure a clear structure and overview.
8+
9+
Please do your best to provide as much information as possible and use a clear and descriptive title for your enhancement suggestion or bug fix to help maintainers and the community understand and reproduce the behavior, find related pull requests and to merge it faster.
10+
11+
* **Ensure the pull request has not already been reported by using the [GitHub Pull Request search](https://github.com/arcticicestudio/icecore-hashids/pulls)** — if it has **and the pull request is still open**, add a comment to the existing pull request instead of opening this new one. If you find a closed pull request that seems to be similar to this one, include a link to it in the [metadata head](#metadata-head) section of this pull request.
12+
* **Ensure to adhere to the [pull request contribution guidelines](https://github.com/arcticicestudio/icecore-hashids/blob/feature/gh-12-github-open-source-community-standards/CONTRIBUTING.md#pull-requests)**, especially the one for tests and documentations.
13+
14+
## Metadata Head
15+
16+
The metadata head should be added to the top of the pull request as [Markdown text quote](https://help.github.com/articles/basic-writing-and-formatting-syntax) containing the [GitHub issue keywords][gh-help-issue-keywords] to link to the related enhancements suggestions (`Closes`) or bug reports (`Fixes`). You can add additional details like dependencies to other pull requests and the order it needs to be merged.
17+
18+
> Closes ISSUE_ID
19+
Must be merged **after**/**before** ISSUE_ID
20+
21+
## Description
22+
23+
Describe the changes as in many relevant details as possible. If this is a enhancement suggestion add specific use-cases and explain why this feature or improvement would be useful. If this is a bug fix ensure to provide a *before/after* comparison by describing the current behavior and the new behavior.
24+
25+
## References
26+
27+
Add any other references and links which are relevant for this issue.

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ out/
1212
!.idea/runConfigurations
1313
!.idea/compiler.xml
1414
!.idea/encodings.xml
15+
!.idea/icon_dark.png
16+
!.idea/icon.png
1517
!.idea/misc.xml
1618
!.idea/modules.xml
1719
!.idea/vcs.xml
@@ -25,3 +27,9 @@ out/
2527
# JVM crash logs
2628
# http://www.java.com/en/download/help/error_hotspot.xml
2729
hs_err_pid*
30+
31+
# +-----+
32+
# + NPM +
33+
# +-----+
34+
node_modules/
35+
npm-debug.log

.idea/icon.png

1.47 KB
Loading

.idea/icon_dark.png

1.47 KB
Loading

.idea/runConfigurations/Interop_Tests.xml

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Unit_Tests.xml

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,25 @@
88
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
99
#
1010
# [References]
11-
# Travis CI Documentation
12-
# (https://docs.travis-ci.com)
11+
# Travis CI
12+
# https://docs.travis-ci.com
1313
language: java
14+
dist: trusty
15+
sudo: false
1416
jdk:
17+
- openjdk8
1518
- oraclejdk8
16-
sudo: false
1719
cache:
1820
directories:
1921
- $HOME/.m2
22+
notifications:
23+
email:
24+
on_success: never
25+
on_failure: change
26+
before_script: mvn --version
27+
script:
28+
- mvn -B clean verify -P node,code-coverage
29+
- npm install
30+
- npm run docs:build
2031
after_success:
2132
- bash <(curl -s https://codecov.io/bash)
22-
script: mvn -B clean verify -P code-coverage

0 commit comments

Comments
 (0)