Browse Source

#257 - Remove references to Jira.

All references to the Spring Jira instance are replaced by GitHub references.
pull/1035/head
Jens Schauder 5 years ago
parent
commit
f8eb72a632
No known key found for this signature in database
GPG Key ID: 996B1389BA0721C3
  1. 14
      README.adoc
  2. 2
      spring-data-jdbc/README.adoc
  3. 2
      spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing/TestDatabaseFeatures.java
  4. 6
      spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/WritingContext.java
  5. 2
      src/main/asciidoc/preface.adoc

14
README.adoc

@ -121,18 +121,18 @@ If you are just starting out with Spring, try one of the https://spring.io/guide
* If you are upgrading, check out the https://docs.spring.io/spring-data/jdbc/docs/current/changelog.txt[changelog] for "`new and noteworthy`" features. * If you are upgrading, check out the https://docs.spring.io/spring-data/jdbc/docs/current/changelog.txt[changelog] for "`new and noteworthy`" features.
* Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-data[`spring-data-jdbc`]. * Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-data[`spring-data-jdbc`].
You can also chat with the community on https://gitter.im/spring-projects/spring-data[Gitter]. You can also chat with the community on https://gitter.im/spring-projects/spring-data[Gitter].
* Report bugs with Spring Data JDBC at https://jira.spring.io/browse/DATAJDBC[jira.spring.io/browse/DATAJDBC]. * Report bugs with Spring Data JDBC at Spring Data issue].
== Reporting Issues == Reporting Issues
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: 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:
* Before you log a bug, please search the * Before you log a bug, please search the
https://jira.spring.io/browse/DATAJDBC[issue tracker] to see if someone has already reported the problem. Spring Data issue[issue tracker] to see if someone has already reported the problem.
* If the issue doesn’t already exist, https://jira.spring.io/browse/DATAJDBC[create a new issue]. * If the issue doesn’t already exist, Spring Data issue[create a new issue].
* 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 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.
* If you need to paste code, or include a stack trace use JIRA `{code}…{code}` escapes before and after your text. * If you need to paste code, or include a stack trace use triple backticks before and after your text.
* 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. * 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.
== Building from Source == Building from Source

2
spring-data-jdbc/README.adoc

@ -30,7 +30,7 @@ Especially the integration tests (if you are reading this on github, type `t` an
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]. 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].
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]. 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].
== Execute Tests == Execute Tests

2
spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing/TestDatabaseFeatures.java

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

6
spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/WritingContext.java

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

2
src/main/asciidoc/preface.adoc

@ -70,7 +70,7 @@ Professional Support :: Professional, from-the-source support, with guaranteed r
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]. 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].
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]. 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].
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]. 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].
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]. 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].
You can also follow the Spring https://spring.io/blog[blog] or the project team on Twitter (https://twitter.com/SpringData[SpringData]). You can also follow the Spring https://spring.io/blog[blog] or the project team on Twitter (https://twitter.com/SpringData[SpringData]).

Loading…
Cancel
Save