Skip to content

Commit ba65318

Browse files
committed
spring-projects#257 - Remove references to Jira.
All references to the Spring Jira instance are replaced by GitHub references.
1 parent 9df29a5 commit ba65318

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Diff for: README.adoc

+7-7
Original file line numberDiff line numberDiff line change
@@ -121,18 +121,18 @@ If you are just starting out with Spring, try one of the https://spring.io/guide
121121
* If you are upgrading, check out the https://docs.spring.io/spring-data/jdbc/docs/current/changelog.txt[changelog] for "`new and noteworthy`" features.
122122
* Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-data[`spring-data-jdbc`].
123123
You can also chat with the community on https://gitter.im/spring-projects/spring-data[Gitter].
124-
* Report bugs with Spring Data JDBC at https://jira.spring.io/browse/DATAJDBC[jira.spring.io/browse/DATAJDBC].
124+
* Report bugs with Spring Data JDBC at Spring Data issue].
125125

126126
== Reporting Issues
127127

128-
Spring Data uses JIRA as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:
128+
Spring Data uses GitHub as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:
129129

130130
* Before you log a bug, please search the
131-
https://jira.spring.io/browse/DATAJDBC[issue tracker] to see if someone has already reported the problem.
132-
* If the issue doesn’t already exist, https://jira.spring.io/browse/DATAJDBC[create a new issue].
133-
* Please provide as much information as possible with the issue report, we like to know the version of Spring Data that you are using and JVM version.
134-
* If you need to paste code, or include a stack trace use JIRA `{code}…{code}` escapes before and after your text.
135-
* If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code.
131+
Spring Data issue[issue tracker] to see if someone has already reported the problem.
132+
* If the issue doesn’t already exist, Spring Data issue[create a new issue].
133+
* Please provide as much information as possible with the issue report, we like to know the version of Spring Data that you are using and JVM version. Please include full stack traces when applicable.
134+
* If you need to paste code, or include a stack trace use triple backticks before and after your text.
135+
* If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code. Use an in-memory database when possible. If you need a different database include the setup using https://github.com/testcontainers[Testcontainers] in your test.
136136

137137
== Building from Source
138138

Diff for: spring-data-jdbc/README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Especially the integration tests (if you are reading this on github, type `t` an
3030

3131
We are keeping an eye on the (soon to be created) https://stackoverflow.com/questions/tagged/spring-data-jdbc[spring-data-jdbc tag on stackoverflow].
3232

33-
If you think you found a bug, or have a feature request please https://jira.spring.io/browse/DATAJDBC/?selectedTab=com.atlassian.jira.jira-projects-plugin:summary-panel[create a ticket in our issue tracker].
33+
If you think you found a bug, or have a feature request please https://github.com/spring-projects/spring-data-jdbc/issues[create a ticket in our issue tracker].
3434

3535
== Execute Tests
3636

Diff for: spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing/TestDatabaseFeatures.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private void supportsQuotedIds() {
6161
/**
6262
* Microsoft SqlServer does not allow explicitly setting ids in columns where the value gets generated by the
6363
* database. Such columns therefore must not be used in referenced entities, since we do a delete and insert, which
64-
* must not recreate an id. See https://jira.spring.io/browse/DATAJDBC-210
64+
* must not recreate an id. See https://github.com/spring-projects/spring-data-jdbc/issues/437
6565
*/
6666
private void supportsGeneratedIdsInReferencedEntities() {
6767
assumeThat(database).isNotEqualTo(Database.SqlServer);

Diff for: spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/WritingContext.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class WritingContext {
6262
* Leaves out the isNew check as defined in #DATAJDBC-282
6363
*
6464
* @return List of {@link DbAction}s
65-
* @see <a href="https://jira.spring.io/browse/DATAJDBC-282">DAJDBC-282</a>
65+
* @see <a href="https://github.com/spring-projects/spring-data-jdbc/issues/507">DAJDBC-282</a>
6666
*/
6767
List<DbAction<?>> insert() {
6868

@@ -76,8 +76,8 @@ List<DbAction<?>> insert() {
7676
* Leaves out the isNew check as defined in #DATAJDBC-282 Possible Deadlocks in Execution Order in #DATAJDBC-488
7777
*
7878
* @return List of {@link DbAction}s
79-
* @see <a href="https://jira.spring.io/browse/DATAJDBC-282">DAJDBC-282</a>
80-
* @see <a href="https://jira.spring.io/browse/DATAJDBC-488">DAJDBC-488</a>
79+
* @see <a href="https://github.com/spring-projects/spring-data-jdbc/issues/507">DAJDBC-282</a>
80+
* @see <a href="https://github.com/spring-projects/spring-data-jdbc/issues/714">DAJDBC-488</a>
8181
*/
8282
List<DbAction<?>> update() {
8383

Diff for: src/main/asciidoc/preface.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Professional Support :: Professional, from-the-source support, with guaranteed r
7070

7171
For information on the Spring Data JDBC source code repository, nightly builds, and snapshot artifacts, see the Spring Data JDBC https://spring.io/projects/spring-data-jdbc/[homepage].
7272
You can help make Spring Data best serve the needs of the Spring community by interacting with developers through the Community on https://stackoverflow.com/questions/tagged/spring-data[Stack Overflow].
73-
If you encounter a bug or want to suggest an improvement, please create a ticket on the Spring Data issue https://jira.spring.io/browse/DATAJDBC[tracker].
73+
If you encounter a bug or want to suggest an improvement, please create a ticket on the https://github.com/spring-projects/spring-data-jdbc/issues[Spring Data issue tracker].
7474
To stay up to date with the latest news and announcements in the Spring eco system, subscribe to the Spring Community https://spring.io[Portal].
7575
You can also follow the Spring https://spring.io/blog[blog] or the project team on Twitter (https://twitter.com/SpringData[SpringData]).
7676

0 commit comments

Comments
 (0)