Skip to content

Releases: codeclou/kitchen-duty-plugin-for-atlassian-jira

V3: After Migration

01 Dec 14:21
8328bc2
Compare
Choose a tag to compare

V3: Doc after migration

01 Dec 14:22
Compare
Choose a tag to compare
  • Doc after migration

V2: Remove iso weeks from Step 04 to Step 06

02 Sep 14:54
Compare
Choose a tag to compare

What?

We used the term "iso week" but misunderstood the meaning. What we actually
wanted are week numbers of a year. With the week numbers being calculated with:

  • First day of week is Sunday (en_US)
  • First week of year is the week containing 1st of January (en_US)

Effects

  • Step 04 to Step 6 have been changed
  • JavaScript + Soy Templates:
    • removed all isoWeek() calls to moment-js and instead used:
// REMOVED
    moment('2018-01-01').isoWeek();

// REPLACED WITH
    // set locale for moment-js so that week starts on sunday
    // and week numbers are correctly calculated
    moment.locale('en', {
        week: {
            dow: 0, // Sunday (0) is the first day of the week
            doy: 1  // Week that contains Jan 1st is the first week of the year.
        }
    });
    moment('2018-01-01').week();
  • refactored all occurrences of isoWeek variables to week
  • Java:
    • refactored all occurrences of isoWeekNumber variables to weekNumber
    • refactored all occurrences of isoWeek variables to week
    • Reimplemented the BaseResource.java code to correctly calculate weeks.

Full Changes

V2-Doc: Remove iso weeks from Step 04 to Step 06

02 Sep 15:05
Compare
Choose a tag to compare

release tag of V2 for documentation

V1: Tutorial is finally done

28 Aug 21:34
Compare
Choose a tag to compare