Skip to content

Instantly share code, notes, and snippets.

@rjz
Last active March 28, 2018 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjz/81c5725474d3ba71064020bbd132084b to your computer and use it in GitHub Desktop.
Save rjz/81c5725474d3ba71064020bbd132084b to your computer and use it in GitHub Desktop.

Changelogs

Save ./changelogs.sh into a changelogs directory sibling to other Koan projects

CHANGELOG: backend (stage@0d8d38a => prod@dd9d4e4)

  • (0d8d38a) hotfix-a6f415c: Merge pull request #980 from swac/KOAN-2263
  • (bd86cfc) hotfix-a6f415c: Merge pull request #981 from swac/KOAN-2264
  • (85dec98) KOAN-2249: Reject duplicate registrations
  • (9d9634b) KOAN-2246: Timeout vanitizer domain lookups
  • (1c7da68) KOAN-2259: Only send slack updates if user exists
  • (ffefe8c) KOAN-2261: add mixpanel logging for more user events
  • (f282b4d) KOAN-2254: add in org info to mixpanel events
  • (1e0a4e4) KOAN-2254: refactor runTasks
  • (597b0a1) KOAN-2254: mixpanel logging for update completions
  • (a663f94) KOAN-2258: Provide logger to controllers
  • (e32745f) KOAN-2260: Handle email inspection failure
  • (0365efb) KOAN-2061: Drop .promptGroupId from old teamUpdates
  • (0102ada) KOAN-2249: Drop unused polyfill
  • (baaada0) KOAN-2239: Archive old migrations
  • (99865d0) KOAN-2239: Fix migration patch
  • (546ebe9) KOAN-2240: Fix default org names

JIRA tickets

--rj@computer, Wed Mar 28 11:36:00 PDT 2018

CHANGELOG: frontend (stage@ba7e0a6 => prod@8601e82)

  • (ba7e0a6) hotfix-ccf0243: Merge pull request #1306 from swac/KOAN-2265
  • (32756fe) KOAN-2257: Turn status red for late reflection
  • (bff75c6) KOAN-2257: Fix settings button
  • (9a03a66) KOAN-2257: Show reflection status dot in subnav
  • (6d7c50f) KOAN-2257: Invert nav menu logic
  • (47654a9) KOAN-2257: Use "active" update logic for team reflections
  • (4b3bdf5) KOAN-2257: Default to "My Reflection" (if available)
  • (dd55eb7) KOAN-2250: Drop redundant / out-of-sync index
  • (7ec4a83) KOAN-2252: Add back to all settings button for configure routes
  • (0f51c9a) KOAN-2222: Make top nav take up less space when scrolling (especially for mobile)
  • (e0905f5) KOAN-BUGS: Fix IE11 form bugs
  • (3be515d) KOAN-2222: Hover nav animation tweaks
  • (7c68dd1) KOAN-2222: Fix nav issues in IE11
  • (99eb477) KOAN-2222: Move settings button to top nav
  • (fc17757) KOAN-2222: Fix settings button not showing up
  • (65638f2) KOAN-2251: store email type on sign up receive event
  • (036f230) KOAN-2222: Make hover area smaller for mini nav
  • (30431fe) KOAN-2222: Fix help links padding & add tooltips
  • (29c727d) KOAN-2222: Fix clipping issue with sidebar animation
  • (cf30b5b) KOAN-2222: Fix some scroll issues in new nav + start z-index standards
  • (5021f46) KOAN-2248: Add add team button to org page
  • (1056951) KOAN-BUGS: fix analytics bug
  • (597ec75) KOAN-BUGS: Make form error more defensive about shape of error object
  • (4d218a9) KOAN-2182: Fix issue with unlinking goals not updating UI
  • (5828fdf) KOAN-2244: fix up analytics for SSO
  • (a6ce895) KOAN-2214: Fix double goal issue in stoplight
  • (d2fd29c) KOAN-2243: Improve up auth screens on mobile-web
  • (55fa92c) KOAN-2242: show team name on login page even when logo is present
  • (5e0f8ae) KOAN-2237: Fix issue with previous reflection showing CTA
  • (9b1b79b) KOAN-2222: Add hover-mode bookend nav
  • (14ef636) KOAN-BUGS: unbreak signup link
  • (0c92746) KOAN-BUGS: Revert "KOAN-2238: Restore "sign up" link"
  • (bbbfe53) KOAN-2222: Nav v2 - remove magic button, add sub-nav
  • (f119b74) KOAN-2238: Restore other sign up link
  • (41dd265) KOAN-2220: Fix bug with trying to view a team in org you're not a member of

HOTFIXES"

These changes are missing in ba7e0a6. Please apply them before continuing!

  • (8601e82) Merge pull request #1296 from swac/KOAN-2251
  • (90a9713) Merge pull request #1292 from swac/KOAN-BUGS
  • (dfe2c27) Merge pull request #1289 from swac/KOAN-2244
  • (57c58ec) Merge pull request #1285 from swac/KOAN-BUGS

JIRA tickets

--rj@computer, Wed Mar 28 11:35:59 PDT 2018

#! /bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PROJECTS=(
frontend
backend
)
footer() {
echo >> $1
echo "--$(whoami)@$(hostname), $(date)" >> $1
}
for p in ${PROJECTS[@]}; do
FILE="CHANGELOG.${p}.md"
echo "Getting changes for '${p}' (see ${FILE})"
(cd "../${p}" && ./bin/changelog.sh $@) > "$FILE"
footer $FILE
done
echo "Getting migrations for 'backend' (see MIGRATIONS.backend.md)"
(cd ../backend && ./bin/migrations.sh $@) > MIGRATIONS.backend.md
footer MIGRATIONS.backend.md

migrations.sh No migrations needed

--rj@computer, Wed Mar 28 11:36:01 PDT 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment